/* Algemene Reset en Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100vh;
  padding-top: 60px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background-color: #1a1a1a;
  color: #e0e0e0;

  display: flex;
  flex-direction: column;
}

/* Standaard Container voor centrering */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigatie & Header (Hero) --- */

.hero {
    background: url('./assets/hero-image.jpg') no-repeat center center/cover;
    /* Belangrijk: De header moet de volledige viewport-hoogte innemen */
    min-height: 100vh;
    /* Gebruik Flexbox om de inhoud (hero-content) verticaal te centreren */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Houdt nav bovenaan en content/footer op hun plek */
    color: #ffffff;
    text-align: center;
    padding-bottom: 50px;
    /* Subtiele overlay om tekst beter leesbaar te maken */
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    position: relative; /* Noodzakelijk voor de absolute positionering van de content */
}

/* DEZE SECTIE IS NIEUW OF GEOPTIMALISEERD */
.hero-content {
    /* Absoluut in het midden plaatsen, onafhankelijk van de NAV en FOOTER */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Verticaal en horizontaal exact centreren */
    width: 90%; /* Zorg dat het niet over de randen gaat */
    max-width: 800px;
    padding: 20px;
    z-index: 50; /* Zorg dat het boven de achtergrondafbeelding ligt */
}

.hero-logo {
    margin-top: -100px;
}

.hero h1 {
    margin-bottom: 10px;
    line-height: 1.2;
    /* Gebruik de gouden accentkleur voor de luxe kop */
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Voor leesbaarheid over de foto */
    /* font-family: 'Cinzel', serif;
    font-weight: 400; */
    font-size: 3.8em;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Aanpassing voor mobiel om tekst minder groot te maken */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em; /* Maakt de kop op mobiel kleiner */
    }
    .hero p {
        font-size: 1.1em;
    }
}

/* --- Sticky Navigatie & Verfraaiing --- */

nav.container {
    /* De basisafmetingen van de container blijven gelijk */
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;

    /* Zorgt voor de uitlijning van de inhoud (logo, links) */
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* De sticky/fixed eigenschappen moeten op een volle breedte wrapper */
    /* We simuleren dit door de NAV zelf een vaste breedte te geven */
}

/* NIEUW: Maak een volle breedte, vaste achtergrond wrapper voor de NAV */
/* We gebruiken een :before pseudo-element op de nav om de volle breedte achtergrond te creëren */
nav.container {
    /* De nav.container krijgt de sticky eigenschappen */
    position: fixed;
    top: 0;
    left: 50%; /* Start in het midden van de viewport */
    transform: translateX(-50%); /* Terug schuiven om te centreren */
    width: 100%; /* Neem volledige breedte van het scherm (maar max-width blijft 1100px) */
    max-width: 1100px; /* Zorgt dat de inhoud niet breder wordt dan 1100px */
    z-index: 1000;
}

nav.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Zeer belangrijk: dit is de volledige breedte van de viewport */
    height: 100%;

    /* Luxe Donkere Achtergrond met Schaduw */
    background-color: rgba(26, 26, 26, 0.5); /* #1a1a1a met lichte transparantie */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); */
    z-index: -1; /* Zorg dat de achtergrond onder de tekst en het logo ligt */
}

.logo {
    font-weight: 700;
    color: #D4AF37; /* Gouden accentkleur */
    font-size: 1.5em;
    display: flex;
    gap:10px;
    font-family: 'Cinzel', serif, sans-serif;
    font-weight: 400;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #D4AF37; /* Gouden hover */
}

/* --- Algemene Sectie Styling --- */
.section {
    padding: 80px 0;
}

.dark-bg {
    background-color: #1a1a1a;
}

.light-bg {
    /* Net iets lichtere donkere kleur voor contrast tussen secties */
    background-color: #2c2c2c;
}

.section h3 {
    text-align: center;
    font-size: 2.5em;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #D4AF37;
    font-weight: 300;
    /* font-family: 'Cinzel', serif; */
}

/* --- Knoppen (Buttons) Styling --- */
.button {
    display: inline-block;
    background-color: #D4AF37; /* Gouden kleur */
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #c09f30;
    transform: translateY(-2px);
}

/* --- Over Ons Sectie Styling --- */
.content-wrapper {
    /* Gebruikt flexbox om de tekst en afbeelding naast elkaar te plaatsen */
    display: flex;
    align-items: center;
    gap: 40px; /* Ruimte tussen tekst en afbeelding */
}

.content-wrapper p {
    flex: 2; /* De tekst neemt 2/3 van de ruimte in */
    font-size: 1.1em;
}

/* De stijl voor de nieuwe afbeelding */
.over-ons-image {
    flex: 1; /* De afbeelding neemt 1/3 van de ruimte in */
    width: 100%;
    height: auto;
    max-height: 300px; /* Maximale hoogte voor grote schermen */
    object-fit: cover;

    /* Luxe afronding en rand */
    border-radius: 8px; /* Subtiele afgeronde hoeken */
    border: 3px solid #D4AF37; /* Luxe gouden rand */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Diepte-effect */
}

/* --- Responsiviteit voor Over Ons --- */
@media (max-width: 768px) {
    .content-wrapper {
        /* Op mobiel komen de tekst en afbeelding onder elkaar */
        flex-direction: column;
    }

    .content-wrapper p {
        flex: auto; /* Tekst neemt de volledige breedte in */
        margin-bottom: 20px;
    }

    .over-ons-image {
        /* De afbeelding strekt zich uit over de volledige breedte van de container op mobiel */
        max-width: 80%;
        border-radius: 20px;

    }

    .section h3{
        text-align: left;
        font-size: 2em !important;
    }
}

/* --- Menu Sectie (Grid) --- */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.diensten-item {
    /* text-align: center; */
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.diensten-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);

}
/* Update deze regels in style.css */
.diensten-image {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Belangrijk: Zorgt dat de foto de ruimte vult zonder vervorming */
    background-color: #555; /* Kan weg als je <img /> gebruikt */
    margin-bottom: 15px;
    border-radius: 5px;
}

.diensten-item h4 {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* --- Contact / Footer --- */
footer.section{
    padding-bottom:0;
}

footer#contact {
    padding-top: 64px;
    border-top: 1px solid #333;
     margin-top: auto;
}

/* Contact layout: 2 kolommen op desktop, stacked op mobiel */
footer#contact .contact-content{
    padding-bottom: 100px;;
    text-align: left;
}

footer#contact .contact-grid{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

footer#contact .contact-copy .intro-text{
    max-width: 44rem;
    margin: 0 0 18px;
    opacity: 0.92;
    line-height: 1.7;
    font-size: 1.1em;
    text-align: left;
}

footer#contact .contact-copy h3{
    text-align: left;
}

footer#contact .contact-copy .intro-text--secondary{
    opacity: 0.9;
}

/* (verwijderd: .contact-info, .contact-cta, oude .social-media container, h3, p, a, etc.) */

footer#contact .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 6px 8px 0;
    border-radius: 999px;
    border: 1px solid rgba(224, 224, 224, 0.22);
    color: #e0e0e0;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

footer#contact .social-icon:hover,
footer#contact .social-icon:focus {
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.55);
    transform: translateY(-1px);
}

footer#contact .social-icon i {
    font-size: 18px;
}

footer#contact .social-media{
    margin-top: 2rem;
    text-align: left;
}

footer#contact .copyright {
    text-align: center;
    padding: 25px 0;
    background-color: #0d0d0d;
    font-size: 0.85em;
}



/* Contact list: rechterkolom */
footer#contact .contact-lines{
  display: grid;
  justify-items: start;
  gap: 12px;
  margin: 0;
  max-width: 100%;
}

footer#contact .contact-line {
  display: grid;
  grid-template-columns: 22px auto; /* iets strakker dan 28px */
  gap: 12px;
  align-items: center;           /* icon en tekst mooi op 1 lijn */
  text-align: left;
}

footer#contact .contact-icon {
  color: #D4AF37;
  line-height: 1;
  margin-top: 0;                 /* geen “zwevende” icons meer */
}

footer#contact .contact-label {
  font-size: 0.9em;
  opacity: 0.85;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}

footer#contact .contact-value {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1.35;
   font-size: 1.07em;
}

footer#contact .contact-value{
color:#FFF;
}

footer#contact .contact-details {
    display: flex;
    align-self:flex-end;
    flex-direction: column;
}

/* Zorg dat je bestaande link-underline stijl netjes blijft */
footer#contact .contact-value.contact-value,
footer#contact a.contact-value {
  border-bottom: 1px solid rgba(224, 224, 224, 0.25);
  padding-bottom: 2px;
  text-decoration: none;
}

footer#contact a.contact-value:hover,
footer#contact a.contact-value:focus {
  color: #D4AF37;
  border-bottom-color: rgba(212, 175, 55, 0.55);
}
/* (duplicaat contact layout + responsive regels verwijderd) */

@media (max-width: 900px){
  footer#contact .contact-grid{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  footer#contact .social-media{
    margin-top: 1.5rem;
  }
}

/* Mobiel: padding iets kleiner */
@media (max-width: 600px) {
  footer#contact .contact-info {
    padding: 22px 18px 18px;
    max-width: 100%;
    text-align: left;
  }

  footer#contact .contact-info h3 {
    text-align: left;
  }
}

/* --- Responsiviteit (Mobiele Apparaten) --- */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.5em;
        }

    /* Navigatie aanpassingen voor mobiel */
    .nav-links {
        flex-direction: column;
        display: none; /* Verberg op mobiel, hier moet je later JS voor een hamburger-menu aan toevoegen */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .image-placeholder {
        width: 100%;
        margin-top: 20px;
    }

    /* Removed .contact-content, .contact-info, .social-media, .social-icon overrides here */

}

/* --- Responsiviteit (Mobiele Apparaten) --- */
@media (max-width: 768px) {
    /* ... (bestaande regels voor hero h2, etc.) ... */
    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.5em;
        }
    .hero-logo{
        margin-top: -80px;
        width:60px
    }

    /* 1. Navigatie aanpassingen voor mobiel: Links verbergen */
    .nav-links {
        display: none; /* Standaard verbergen op kleine schermen */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Onder de navigatiebalk */
        left: 0;
        width: 100%;
        background-color: #2c2c2c; /* Donkere achtergrond voor het geopende menu */
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }

    /* 2. De links tonen als de 'active' class is toegevoegd door JS */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid #444; /* Subtiele scheiding */
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
    }

    /* 3. Styling van de Hamburgertoggle (Alleen zichtbaar op mobiel) */
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        background: none;
        border: none;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #D4AF37; /* Gouden kleur */
    }

    /* Animatie voor de X-vorm (optioneel, maar stijlvol) */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ... (rest van de media query regels) ... */
}

/* Zorg ervoor dat de toggle NIET zichtbaar is op desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}
}