/* Algemene stijl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #0f1624;
    color: #fff;
}

header {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 10;
    padding: 1rem 2rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

header ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #f39c12;
}

/* Hero Sectie */
#hero {
    background: url('jouw-foto.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: flex-start; /* Zorgt dat de inhoud hoger staat */
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    padding-top: 10vh; /* Extra ruimte bovenaan */
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparante overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 1rem; /* Padding voor kleinere schermen */
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#hero .btn {
    background: #f39c12;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}

#hero .btn:hover {
    background: #e67e22;
}

/* Media Queries voor mobiel */
@media screen and (max-width: 768px) {
    #hero {
        padding-top: 15vh; /* Meer ruimte bovenaan voor kleinere schermen */
    }

    #hero h1 {
        font-size: 2.5rem; /* Kleinere tekst voor mobiel */
    }

    #hero p {
        font-size: 1.2rem; /* Kleinere tekst voor mobiel */
    }

    #hero .btn {
        font-size: 1rem; /* Kleinere knoptekst */
        padding: 0.6rem 1.2rem; /* Kleinere knoppen */
    }
}

@media screen and (max-width: 480px) {
    #hero h1 {
        font-size: 2rem; /* Nog kleinere tekst voor hele kleine schermen */
    }

    #hero p {
        font-size: 1rem; /* Nog kleinere tekst voor mobiele apparaten */
    }

    #hero .btn {
        font-size: 0.9rem; /* Kleinere knoptekst */
        padding: 0.5rem 1rem; /* Kleinere knoppen */
    }
}



/* Over Mij */
#about {
    padding: 4rem 2rem;
    background: #1e2a38;
}

#about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f39c12;
}

#about .about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#about img {
    max-width: 200px;
    border-radius: 50%;
    border: 4px solid #f39c12;
}

/* Vaardigheden */
#skills {
    padding: 4rem 2rem;
    background: #0f1624;
}

#skills h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f39c12;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.skill {
    padding: 1.5rem;
    background: #1e2a38;
    border-radius: 10px;
    font-size: 1.2rem;
}

.skill i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #f39c12;
}

#projects {
    padding: 4rem 2rem;
    background: #1e2a38;
    color: #fff;
    text-align: center;
}

#projects h2 {
    color: #f39c12;
    margin-bottom: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
}
/* projecten */
.project-card {
    text-decoration: none;
    color: #fff;
    background: #0f1624;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: #f39c12;
    color: #000;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.5;
}


footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    margin-top: 2rem;
}
