/* --- CSS VARIABELEN (KLEUREN & FONTS) --- */
:root {
    --color-primary-bg: #F9F6F0;    
    --color-secondary-bg: #EFE8DF;  
    --color-text-main: #5C4B40;     
    --color-accent: #C2A88F;        
    --color-btn-bg: #7D6352;        
    --color-btn-text: #FFFFFF;      
    --color-white: #FFFFFF;         

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-primary-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, .logo h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
}

h2 {
    text-align: center;
    font-size: clamp(1.7rem, 6vw, 3.5rem); 
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
    margin-top: clamp(2rem, 5vh, 4rem);
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    padding: 0 15px;
}

h2::after {
    content: '';
    display: block;
    width: 140px;
    height: 2px;
    background-color: var(--color-accent); /* Aangepast naar variabele */
    margin: 1.5rem auto 0;
    opacity: 0.6;
}

h5{ font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);}

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

.section-title {
    text-align: center;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 3rem;
}

/* --- KNOPPEN --- */
.btn {
    display: inline-block;
    background-color: var(--color-btn-bg);
    color: var(--color-btn-text);
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--color-text-main);
}

.btn-large {
    padding: 15px 32px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* --- NAVIGATIE (HEADER) --- */
.header {
    padding: 0; /* Was 5px */
    background-color: var(--color-primary-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-secondary-bg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Was 5px 20px, maar we halen de margin bij het logo weg */
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- LOGO (HEADER) --- */

.logo h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo.img img {
    display: block;      
    margin-top: 10px; 
    padding: 15px; 
    width: 160px;        
    height: auto;
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-main);
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-accent); 
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Animatie Hamburger als menu open is */
.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- 1. LANDING (HERO) --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    gap: 40px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

 .hero-text h5 {
        font-size: 1.8rem; /* Iets kleiner zodat lange woorden niet uitbreken */
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: left; /* Gecentreerd oogt rustiger op mobiel */
        
    }

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- 2. TARIEVEN --- */
.pricing {
    background-color: var(--color-secondary-bg);
    padding: 40px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--color-accent); 
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-text-main);
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.features li:before {
    content: '✦';
    color: var(--color-accent);
    margin-right: 10px;
}

/* --- 3. FOTO GALERIJ (met 3D Hover basis) --- */
.gallery {
    padding: 40px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.gallery-item {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.6s ease-out;
}

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--glare-x, 50%) var(--glare-y, 50%), 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0) 80%
    );
    opacity: 0;
    transition: opacity 0.5s ease; 
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 0.8; 
}

/* --- 4. FAQ SECTIE --- */
.faq-section {
    background-color: var(--color-secondary-bg); 
    padding: 40px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.faq-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 3rem;
}

.faq-item {
    text-align: left;
}

.faq-question {
    width: 100%;
    background-color: var(--color-btn-bg); 
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.20rem;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #5e4a3d;
}

.faq-icon::before {
    content: '+';
    font-size: 1.8rem;
    color: #D3B9A9;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr; 
    transition: grid-template-rows 0.4s ease-out; 
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 20px; 
    opacity: 0;
    transform: translateY(15px); 
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, padding 0.4s ease-out;
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--color-btn-bg); 
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr; 
}

.faq-item.active .faq-answer-inner {
    padding: 25px 20px; 
    opacity: 1; 
    transform: translateY(0); 
}

.faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-item.active .faq-icon::before {
    content: '—'; 
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c5a693;
    color: #FFFFFF;
    border: 1px solid #887366;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: #ab8f7e;
    color: #FFFFFF;
}

/* --- 5. CONTACT (FOOTER) --- */
.footer {
    background-color: var(--color-text-main);
    color: var(--color-primary-bg);
    padding: 60px 0 20px;
}

.footer h3 {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.contact-item {
    font-size: 1rem;
}

.contact-item strong {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- BOEKINGS PAGINA STYLING --- */
/* (Bewaar deze voor je afspraak.html pagina) */
.booking-section {
    padding: 80px 0;
    background-color: #fcf9f7;
    text-align: center;
}

.booking-header {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booking-intro {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

.booking-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 600px;
}

.booking-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    background-color: #fdfdfd;
    border: 2px dashed #e0d5ce;
    border-radius: 10px;
    margin: 20px;
}

.placeholder-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #a89486;
}

.small-note {
    font-size: 0.8rem;
    color: #ccc;
    display: block;
    margin-top: 10px;
}

.booking-footer {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #888;
}

.booking-footer strong {
    color: #a89486;
}

.booking-page {
    background-color: #fcf9f7;
}

/* --- RESPONSIVE DESIGN (MOBIEL & TABLET) --- */

/* Tablet (Onder 992px) */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1); 
    }
}

/* Mobiel (Onder 768px) - Alle samengevoegde regels */
@media (max-width: 768px) {
    /* Header en Navigatie */
 .header-content {
        display: flex;
        flex-direction: row; /* Zorg dat logo en hamburger naast elkaar blijven */
        justify-content: space-between; /* Zet logo links en hamburger rechts */
        align-items: center; /* Lijn ze verticaal precies in het midden uit */
        padding: 8px 15px;
    }

    .hamburger {
        display: flex;
        margin-left: auto; /* Duwt de hamburger extra naar rechts mocht de ruimte veranderen */
        margin-right: 20px;
    }

    .nav-links {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-primary-bg);
        flex-direction: column;
        align-items: center; /* Zorgt dat de tekstlinks in het uitklapmenu wel gecentreerd staan */
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 1000;
    }
    .nav-links.active {
        display: flex; 
    }

    .logo h2 {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .logo.img img {
        width: 110px; /* Nog iets compacter op mobiel */
        padding: 5px 0;
    }

    .btn.btn-sm {
        padding: 8px 12px;
        margin-right: 30px;
        font-size: 0.8rem;
    }

    /* Hero Sectie */
    .hero {
        flex-direction: column; 
        text-align: center; 
        padding: 40px 20px;
        gap: 30px;
        overflow-x: hidden;
    }
    
    .hero-image {
        width: 100%;
        max-width: 350px; 
        margin: 0 auto;
        order: 2; 
    }
    
    .hero-text {
        width: 100%;
        order: 1; 
        padding: 0;
    }

   .hero-text h1 {
        font-size: 2.4rem; /* Iets kleiner zodat lange woorden niet uitbreken */
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left; /* Gecentreerd oogt rustiger op mobiel */
        padding: 0 50px;    /* Gebruik kleine vaste padding i.p.v. 10vw */
    }
    
    .hero-text h5 {
        font-size: 1.8rem; /* Iets kleiner zodat lange woorden niet uitbreken */
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: left; /* Gecentreerd oogt rustiger op mobiel */
        padding: 0 50px;    /* Gebruik kleine vaste padding i.p.v. 10vw */
    }
    
    .hero-text p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: left;
        padding: 0 50px; 
        padding-top: 30px
    }

    /* Grids en Kaarten */
 /* Grids en Kaarten */
   .pricing-grid {
        grid-template-columns: 1fr; /* Forceert één kolom op mobiel */
        gap: 25px;
        max-width: 340px; /* Houdt de kaarten compact en elegant */
        margin: 0 auto;   /* Centreert de kolom op het scherm */
    }

    /* Maak de inhoud van de kaartjes iets compacter zodat het mooi past */
    .pricing-card {
        padding: 25px 15px; 
    }

    .pricing-card h3 {
        font-size: 1.6rem;
    }

.pricing-card.featured {
        transform: scale(1); 
        border-color: var(--color-accent);
        margin: 5px 0;
    }    
    
  .pricing-card .price {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
 .pricing-card .features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Footer en Boekingen */
    .footer-content {
        flex-direction: column;
    }

    .booking-section {
        padding: 50px 20px;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
