body {
    font-family: 'Faculty Glyphic';
    margin: 0;
    padding: 0;
    background-color: #f2f2f2; /* zacht lichtgrijs */
    color: #2f4f2f;
    text-align: center;
    background-image: url('images/nexusbackground.png'); /* subtiele bladstructuur */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed; /* zorgt ervoor dat de achtergrond meebeweegt bij scrollen */
}

header {
    background-color: rgba(255, 255, 255, 0.6);
    color: #2e7d32;
    padding: 1em 2em;
    border-bottom: 1px solid #a5d6a7;
    max-width: 900px;
    margin: 2em auto;
    border-radius: 12px;
    margin-top: 2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-height: 60px;
	
}


header h1 {
    margin: 0;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.logo-container img {
    height: 60px; /* zelfde als header max-height */
    width: auto;
    object-fit: contain;
}

nav {
    background-color: rgba(129, 199, 132, 0.6); 
    padding: 1em;
    max-width: 932px;
    margin: 2em auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}


nav a {
    color: white;
    margin: 0 1.5em;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

section {
    background-color: rgba(255, 255, 255, 0.6);
    margin: 2em auto;
    padding: 2em;
    border-radius: 12px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


#map {
    background-color: rgba(255, 255, 255, 0.6);
    margin: 2em auto;
    padding: 2em;
    border-radius: 12px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


footer {
    background-color: rgba(129, 199, 132, 0.6);   
    color: white;
    padding: 1em;
    margin: 3em auto 2em auto;
    max-width: 932px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-right: 15px;
    vertical-align: middle;
}


section ul {
    list-style: none; /* Verwijder de bullet points */
    padding: 0;
}

section ul li {
    padding: 0.3em 0;
}


.social-icon {
    font-size: 1.8rem;
    margin: 0 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon.facebook {
    color: #1877F2;
}

.social-icon.instagram {
    color: #E1306C;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon.gmail {
    color: #D44638; /* Gmail rood */
}


.social-icon:hover {
    transform: scale(1.2);
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.photo-gallery img {
  width: 100%;
  height: 400px; /* vaste hoogte voor gelijke grootte */
  object-fit: cover; /* zorgt dat het beeld mooi wordt bijgesneden */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.lightbox.show {
    display: flex;
}

.close {
    position: absolute;
    top: 2%;
    right: 5%;
    color: white;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 600px) {

    /* Maak de header kleiner */
    header h1 {
        font-size: 2rem;
        text-align: center;
    }

    /* Navigatie compacter maken */
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 0.5em;
        width:100%;
        background-color: rgba(129, 199, 132, 0.75);       
    }

    nav a {
        font-size: 0.8rem;
        margin: 0.3em 0.5em;
        padding: 0.3em 0.6em;
    }

    /* Maak foto's kleiner */
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 foto's per rij op mobiel */
        gap: 1em;
    }

    .photo-gallery img {
        width: 89%;
        height: auto;
        max-width: 200px;
        border-radius: 6px;
    }

    /* Contactformulier aanpassen */
    form {
        width: 95%;
        padding: 1em;
    }

    /* Social media iconen iets kleiner */
    .social-icon {
        font-size: 1.4rem;
        margin: 0 6px;
    }

    /* Kaart hoogte aanpassen */
    #map iframe {
        height: 250px;
    }
}


.menu-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-top:30px;
}

.menu-columns h3 {
    margin-top: 0;
}

.menu-columns ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.menu-columns li {
    padding: 0.3em 0;
}

/* Voor mobiel: 1 kolom */
@media (max-width: 700px) {
    .menu-columns {
        grid-template-columns: 1fr;
    }
}
