* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px;
}

.header-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px;
    gap: 1rem;
}

h1 {
    color: #8B4513;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

nav {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: #f0e6d2;
}

nav a.active {
    font-weight: bold;
}

.hero-container {
    position: relative;
    width: 100%;
    text-align: center;
    color: white;
}

.hero {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

section {
    background: white;
    margin: 2rem auto;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #D2691E;
    padding-bottom: 0.5rem;
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.intro p {
    margin-bottom: 1rem;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: #fef9f3;
    padding: 2rem;
    padding-top: 3rem; /* Meer ruimte boven voor de foto */
    border-radius: 8px;
    border-left: 4px solid #D2691E;
    position: relative; /* Nodig voor positionering van de foto */
}

.team-member-photo {
    position: absolute;
    top: -25px; /* Plaatst de foto deels buiten de kaart */
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Maakt de foto rond */
    object-fit: cover; /* Zorgt dat de foto goed schaalt */
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.team-member h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-member p {
    color: #555;
    line-height: 1.8;
}

.actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.action-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.action-card h3 a {
    color: #8B4513;
    text-decoration: none;
}

.action-card h3 a:hover {
    text-decoration: underline;
}

.action-card p {
    color: #666;
    line-height: 1.7;
}

.photo {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.breadcrumb {
    margin: 2rem 0 1rem;
    color: #666;
}

.breadcrumb a {
    color: #8B4513;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

article {
    background: white;
    margin: 1rem auto 2rem;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

article p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

article img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 500px; /* Voorkomt dat de afbeelding te hoog wordt */
    margin: 2rem auto; /* Centreert de afbeelding en voegt ruimte toe */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.sponsors-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Vloeiende overgang */
    min-height: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Subtiele, moderne schaduw */
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12); /* Iets meer schaduw bij hover */
}

.sponsor-info {
    padding-top: 1rem; /* Voegt wat ruimte toe boven de titel */
    width: 100%; /* Zorgt dat de info de volledige breedte gebruikt */
}

.sponsor-logo {
    height: 120px; /* Vaste hoogte voor de logo-container */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sponsor-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-card h3 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.sponsor-contact {
    word-break: break-all; /* Voorkomt dat lange URLs de layout breken */
}
.sponsor-contact a {
    color: #555; /* Neutrale tekstkleur, lijkt niet op een link */
    text-decoration: none;
    font-weight: 400; /* Normaal lettergewicht */
    transition: color 0.3s ease; /* Vloeiende kleurverandering */
}

.sponsor-contact a:hover {
    color: #D2691E; /* Krijgt de accentkleur bij hover */
}

footer {
    background: #8B4513;
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
}

footer h2 {
    color: white;
    border-bottom-color: white;
}

footer a {
    color: #FFE4B5;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.mobile-menu-toggle {
    display: none;
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    margin: 1rem auto 0;
    float: right;
}

.logo {
    display: inline-block; /* Zorgt voor correcte weergave */
}

.logo img {
    max-width: 400px;
    height: auto;
    display: block; /* Belangrijk voor consistentie */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .hero {
        height: 300px;
    }

    section, article {
        padding: 2rem 1rem;
    }

    .team, .actions, .sponsors-grid {
        grid-template-columns: 1fr;
    }


    #mainNav {
        display: none; /* Verberg de menu-items standaard */
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    #mainNav.mobile-open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        margin: 0; /* Verwijder onnodige marges */
    }

    .hero-tagline {
        font-size: 1.8rem;
        width: 80%;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo {
        margin: 0;
        margin-left: auto;
    }

    .logo img {
        max-width: 220px; /* Maak het logo kleiner op mobiel */
    }
}

.google-form-container {
    position: relative;
    width: 100%;
    height: 1200px; /* Pas de hoogte aan indien nodig */
}

.google-form-container iframe {
    width: 100%;
    height: 100%;
}