:root {
    --Coquille: #f6ebe2;       /* De zachte basis zandkleur */
    --Olive: #4d3528;          /* Het diepe, luxe donkerbruin */
    --Toile: #d7beaa;          /* De warmere, donkerdere zandkleur */
    
    /* Luxe gouden accenten */
    --Gold: #C5A880;           /* Mat, elegant champagnegoud */
    --Gold-Light: #EADBC8;     /* Heel zacht goud voor subtiele highlights */
}
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 0, 0);
}

body {
    /* Vervang 'Lato' door 'Poppins' voor alle normale teksten */
    font-family: 'Poppins', sans-serif; 
    background-color: var(--Coquille);
    color: black;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    /* Vervang 'Playfair Display' door 'Montserrat' voor alle titels en koppen */
    font-family: 'Montserrat', sans-serif; 
    color: var(--Olive);
}

a {
    color: var(--Olive);
    text-decoration: none;
}
nav {
    padding: 0 60px;
    display: flex;
    align-items: center;
    height: 110px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white; /* i.p.v. solid kleur */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    box-shadow: black 0px 1px 3px;

}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    font-size: 20px;
}
nav .menu a {
    text-decoration: none;
    color: var(--Olive);
    font-weight: 500;
    background-image: linear-gradient(var(--Olive), var(--Olive));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px; /* Start op 0% breedte en is 2px hoog */
    padding-bottom: 5px;
    transition: all 0.3s ease; 
}

nav .menu a:hover {
    background-size: 100% 2px;
}

.hero {

    width: 100%;
    height: 80vh;
    
    background: 
        linear-gradient(rgba(77, 53, 40, 0.3), rgba(77, 53, 40, 0.3)),
        url('hero.jpeg');
    background-size:cover;
    background-position: center;
}

.merken {
    width: auto;
    height: 120px;
    overflow: hidden;
    /* background-color: var(--Sauge); */
    padding: 30px 0;
    display: block; /* Zorg dat het een block element is */
    /* margin-top: 4%;    
    color: white;
    text-align: center; */
    /* border: var solid 3px; */
}

.slide {
    display: flex;
    width: max-content;
    animation: loop-scroll 60s linear infinite;
    gap: 110px; /* Dit zorgt voor een exacte, gelijke afstand tussen alle boxen */
}

/* De onzichtbare box die elk logo exact dezelfde breedte geeft */
.slide .logo-box {
    width: 150px;       /* Geef hier aan hoe breed elk logo maximaal mag zijn */
    height: 100px;      /* De vaste hoogte van je slider */
    display: flex;
    justify-content: center; /* Centreert het logo horizontaal */
    align-items: center;     /* Centreert het logo verticaal */
    flex-shrink: 0;
}

/* De afbeelding binnen de box */
.slide .logo-box img {
    max-width: 100%;    /* Zorgt dat het logo nooit breder wordt dan de 150px box */
    max-height: 100%;   /* Zorgt dat het logo nooit hoger wordt dan de 100px box */
    width: auto;        /* Behoudt de originele verhouding */
    height: auto;       /* Behoudt de originele verhouding */
    object-fit: contain;/* Extra beveiliging tegen vervorming */
}



@keyframes loop-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.info {
    width: 100%;
    min-height: 60vh; /* min-height voorkomt dat tekst eruit loopt als het lang is */
    background-image: linear-gradient(#f6ebe2,#d7beaa);
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* border-bottom: var solid 3px; */
    align-items: center; /* Centreert tekst en afbeeldingen verticaal naast elkaar */
}

.info .text-content {
    padding: 40px 60px;
    text-align: center; /* Strakke links-uitlijning voor desktop */
}

.info h2 {
    margin-bottom: 20px;
}

.info p {
    line-height: 1.6;
}

/* De container voor de afbeeldingen */
.info .image-wrapper {
    width: 100%;
    height: 400px; /* Vaste hoogte voor het overlap-effect */
    position: relative;
}

/* Basisstijl voor beide afbeeldingen */
.info-image1, .info-image2 {
    width: 220px;
    height: 300px;
    object-fit: cover; /* Voorkomt dat de foto's vervormen */
    /* border: 2px solid var(--Olive); /* Achtergrondkleur tijdens het laden van de video */
    position: absolute;
    top: 50%; /* Start in het verticale midden */
}

/* De overlappende posities */
.info-image1 {
    left: 15%;
    transform: translateY(-60%); /* Schuift iets omhoog */
    z-index: 1;
}

.info-image2 {
    left: 40%;
    transform: translateY(-40%); /* Schuift iets omlaag */
    z-index: 2;
}

/* --- INSTAGRAM SECTIE (HERSTELD NAAR WARME RUST) --- */
.insta-section {
    /* Verloop van de lichte zandkleur naar een iets warmere nuance */
    background-image: linear-gradient(to bottom, var(--Coquille), #EFE4DA); 
    padding: 60px 0;
}

.insta-title {
    text-align: center;
    margin-bottom: 35px;
    color: var(--Olive);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.insta-item {
    aspect-ratio: 1 / 1;
    background: var(--Toile); 
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.insta-item:hover {
    border-color: var(--Gold);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25); 
}

/* Gecorrigeerde placeholder animatie voor het warme palet */
.placeholder {
    background: linear-gradient(90deg, var(--Coquille) 25%, var(--Toile) 50%, var(--Coquille) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.insta-item {
    position: relative;
    cursor: pointer;
}

.insta-item:hover .play-button {
    opacity: 0.7;
}

.insta-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.insta-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background: var(--Olive); /* Achtergrondkleur tijdens het laden van de video */
}

.insta-video-item:hover video {
    transform: scale(1.03);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 38px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.insta-video-item:hover .play-button {
    opacity: 0.4;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Mobiel: 3 kolommen per rij */
@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}


.quote {
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; /* Centreert de tekst onder de foto's */
    background-image: linear-gradient(#d7beaa, #f6ebe2);
    /* border-bottom: var solid 3px; */
    /* border-top: var solid 3px; */
    
}

.quote .img-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 gelijke kolommen */
    gap: 30px; /* Ruimte tussen de kolommen */
    width: 90%;
    max-width: 1200px;
}

.quote .item img {
    width: 50%;
    height: auto;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    border-radius: 500px;
    border: 2px solid var(--Gold); /* Veranderd van groen naar goud */
}

.quote .item p {
    margin-top: 15px;
    font-size: 1.1em;
    font-style: italic;
    color: #333;
}




footer {
    background-color: var(--Coquille);
    padding: 20px 0;
    border-top:black solid 1px;
}

.footer {
margin-left: 1%;
display: grid;
grid-template-columns: repeat(4, 1fr);
}
footer input {
    padding: 10px;
    margin: 10px 0;
    width: 100px;
    box-sizing: border-box;
    background-color: var(--Toile);
    width: 200px;
}
footer button, .popup-content button {
    padding: 10px 20px;
    background-color: var(--Olive); /* Basis is het diepe donkerbruin */
    color: #fff;
    cursor: pointer;
    height: 50px;
    width: auto; /* Flexibeler voor tekst */
    min-width: 120px;
    border: 1px solid var(--Gold);
    border-radius: 5px;
    
    /* Goud verloop dat animmeert bij hover */
    background-image: linear-gradient(var(--Gold), var(--Gold));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 100%; 
    padding-bottom: 5px;
    transition: all 0.4s ease;
}

footer button:hover, .popup-content button:hover {
    color: var(--Olive); /* Tekst wordt donkerbruin op de gouden achtergrond */
    background-size: 100% 100%; 
}

.credits {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

footer .opening {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.opening p {
    margin: 0;
    font-size: 1.1em;
}


#quote1, #quote2, #quote3 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#quote1.show, #quote2.show, #quote3.show {
    opacity: 1;
    transform: translateY(0);
}

.hamburger {
    display: none; /* Verberg op desktop */
}


/* pop-up */

/* De donkere, transparante achtergrondlaag */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 53, 40, 0.5); /* Warme olijfbruine gloed over de site */
    z-index: 9999; /* Zorgt dat hij overal, inclusief de nav, heen valt */
    display: none; /* Standaard verborgen, Javascript zet dit open */
    align-items: center;
    justify-content: center;
}

/* Het pop-up venster zelf */
.popup-content {
    background-color: var(--Coquille);
    padding: 40px;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: rgba(77, 53, 40, 0.15) 0px 10px 30px;
    text-align: center;
    box-sizing: border-box;
}

.popup-content h2 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--Olive);
}

/* Formulier velden in de pop-up */
.popup-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--Toile);
    border-radius: 4px;
    background-color: transparent;
    box-sizing: border-box;
    color: var(--Olive);
}

.popup-content input:focus {
    outline: none;
    border-color: var(--Gold); /* Veranderd van groen naar goud */
}

/* De inschrijfknop */
.popup-content button {
    width: 100%;
    padding: 12px;
    background-color: var(--Olive);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.popup-content button:hover {
    background-color: var(--Gold);
    color: var(--Olive);
}

/* Het sluitkruisje (bovenin) */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--Toile);
    cursor: pointer;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: var(--Olive);
}




.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.video-overlay.active {
    display: flex;
}

.video-container {
    width: min(90vw, 800px);
    max-height: 85vh;
    position: relative;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 100vh;
    display: block;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--Olive); /* Achtergrondkleur tijdens het laden van de video */
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.video-close:hover {
    background: #f0f0f0;
}

