/* --- 1. Variabelen & Branding --- */
:root {
    --color-sand: #F5F1EA;
    --color-sand-dark: #EBE5dc;
    --color-forest: #1F2A24;
    --color-clay: #C47A5A;
    --color-clay-dark: #a66346;
    --color-mist: #E7ECE8;
    --color-charcoal: #202322;
    --color-border: #D7DDD7;
    --color-white: #FFFFFF;
    --color-gold: #D6C292;

    --font-heading: 'Fraunces', serif;
    --font-body: 'Manrope', sans-serif;

    --radius-md: 8px;
    --radius-xl: 24px;
    --radius-pill: 100px;
    --shadow-soft: 0px 8px 24px rgba(31, 42, 36, 0.06);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--color-sand);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-forest);
    font-weight: 600;
    line-height: 1.15;
}
h1 { font-size: 3.5rem; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h2 { font-size: 2.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: #4a4d4b; }
.subhead { font-size: 1.25rem; max-width: 500px; margin-bottom: 2rem; color: var(--color-charcoal); }
.eyebrow { text-transform: uppercase; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--color-clay); margin-bottom: 1rem; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.align-start { align-items: start; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.mb-large { margin-bottom: 3rem; }
.mt-large { margin-top: 3rem; }
.bg-mist { background-color: var(--color-mist); }
.bg-sand-dark { background-color: var(--color-sand-dark); }
.bg-dark { background-color: var(--color-forest); color: var(--color-white); }
.text-white { color: white !important; }

/* --- Buttons System --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: var(--radius-pill);
    font-weight: 600; cursor: pointer; border: 1px solid transparent;
    transition: all 0.3s ease; height: 50px;
}
.btn-primary { background-color: var(--color-clay); color: white; }
.btn-primary:hover { background-color: var(--color-clay-dark); transform: translateY(-2px); }

.btn-outline { border-color: var(--color-forest); color: var(--color-forest); background: transparent; }
.btn-outline:hover { background-color: var(--color-forest); color: white; }

.btn-sm { height: 40px; padding: 0 24px; font-size: 0.9rem; }
.full-width { width: 100%; }

/* --- Navigatie --- */
header {
    background-color: rgba(245, 241, 234, 0.95); backdrop-filter: blur(10px);
    padding: 20px 0; position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; display: flex; align-items: center; gap: 10px; color: var(--color-forest); }
.breath-circle { width: 20px; height: 20px; background: var(--color-clay); border-radius: 50%; animation: breath 6s ease-in-out infinite; opacity: 0.8; }
@keyframes breath { 0%, 100% { transform: scale(0.8); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }

.desktop-nav a { margin: 0 15px; font-weight: 500; font-size: 0.95rem; }
.desktop-nav a:hover { color: var(--color-clay); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-forest); margin: 6px 0; transition: 0.3s; }

/* Mobile Menu */
.mobile-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--color-sand);
    display: flex; justify-content: center; align-items: center;
    transform: translateX(100%); transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1); z-index: 999;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-content { display: flex; flex-direction: column; text-align: center; gap: 20px; }
.mobile-link { font-family: var(--font-heading); font-size: 2rem; color: var(--color-forest); }

/* --- Hero --- */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; min-height: 80vh; }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 100px 24px 100px 24px; box-shadow: var(--shadow-soft); }
.hero-tagline { position: absolute; bottom: -20px; right: -20px; background: var(--color-white); padding: 20px 40px; border-radius: 50px; font-family: var(--font-heading); box-shadow: var(--shadow-soft); white-space: nowrap; }
.badge-pill { display: inline-block; background: var(--color-clay); color: white; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.cta-group { display: flex; gap: 15px; margin-bottom: 30px; }
.trust-chips { display: flex; gap: 20px; font-size: 0.9rem; color: #666; }
.check { color: var(--color-clay); font-weight: bold; margin-right: 5px; }

/* --- USP's --- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.icon-box { font-size: 2rem; margin-bottom: 10px; }

/* --- Classes (New System) --- */
.classes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.specials-grid { grid-template-columns: repeat(3, 1fr); }

.class-card { background: white; padding: 30px; border-radius: var(--radius-xl); border: 1px solid var(--color-border); height: 100%; display: flex; flex-direction: column; transition: 0.3s; position: relative; }
.class-card:hover { transform: translateY(-5px); border-color: var(--color-clay); }
.card-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 10px; }
.level-tag { font-size: 0.75rem; text-transform: uppercase; border: 1px solid var(--color-forest); padding: 4px 10px; border-radius: 20px; }
.badge-special { background: var(--color-sand-dark); color: var(--color-forest); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.card-meta { font-size: 0.85rem; color: #777; margin-top: auto; padding-top: 15px; border-top: 1px dashed var(--color-border); margin-bottom: 15px; }

.text-link { color: var(--color-clay); font-weight: 700; font-size: 0.9rem; }
.text-link::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.text-link:hover { text-decoration: underline; color: var(--color-clay-dark); }

/* Tip Card */
.tip-card { background: #FCF9F0; border: 1px solid var(--color-gold); padding: 25px; border-radius: var(--radius-xl); display: flex; gap: 15px; align-items: start; }
.tip-card .icon { font-size: 1.5rem; }
.tip-card h4 { font-size: 1rem; margin-bottom: 5px; color: #997B2D; }
.tip-card p { font-size: 0.9rem; margin-bottom: 10px; }
.text-link-small { font-size: 0.85rem; font-weight: 700; text-decoration: underline; }

/* --- How it Works (Cards) --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: white; padding: 30px; border-radius: var(--radius-xl); text-align: center; }
.step-icon { width: 40px; height: 40px; background: var(--color-clay); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; margin: 0 auto 15px; }

/* --- Rooster System --- */
/* Legenda & Dots */
.schedule-legend { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 0.85rem; color: #666; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.high { background-color: #D46A6A; } 
.dot.med { background-color: #E6B658; } 
.dot.low { background-color: #7C907A; } 
.intensity-row { display: flex; align-items: center; gap: 6px; margin-top: 2px; }

/* Mobile Tabs (Hidden on desktop) */
.mobile-tabs-wrapper { display: none; }
.mobile-tabs-nav { display: none; }

.schedule-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.day-col { background: white; padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
.weekend-col { background: var(--color-sand-dark); border: none; }
.day-title { text-align: center; margin-bottom: 20px; border-bottom: 1px solid var(--color-border); padding-bottom: 10px; }

.schedule-card { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px dotted #eee; padding-bottom: 10px; }
.schedule-card:last-child { border: none; margin: 0; padding: 0; }
.time-info { display: flex; flex-direction: column; line-height: 1.3; }
.time-info .time { font-size: 0.8rem; color: #888; font-weight: 600; }
.time-info small { font-size: 0.8rem; color: #999; }
.btn-book { background: var(--color-mist); color: var(--color-forest); border: none; padding: 6px 14px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; cursor: pointer; transition: 0.2s; }
.btn-book:hover { background: var(--color-clay); color: white; }

/* --- Prijzen --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: end; }
.pricing-card { background: white; padding: 40px; border-radius: var(--radius-xl); text-align: center; border: 1px solid var(--color-border); position: relative; }
.pricing-card.popular { border: 2px solid var(--color-clay); transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-soft); }
.pricing-card .price { font-family: var(--font-heading); font-size: 3rem; color: var(--color-forest); margin: 15px 0; }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-clay); color: white; font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 600; }

/* --- Testimonials --- */
.stars { color: #FFD700; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 5px; }
.quote { font-family: var(--font-heading); font-size: 2.2rem; line-height: 1.4; margin-bottom: 20px; }
.review-score { margin-top: 30px; font-size: 0.9rem; opacity: 0.7; }

/* --- Pro Form & Location --- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge-soft { background: white; padding: 6px 12px; border-radius: 8px; border: 1px solid var(--color-border); font-size: 0.85rem; }

/* Custom High Fidelity Map */
.map-visual { width: 100%; height: 350px; background: #E6EAEB; border-radius: var(--radius-xl); position: relative; overflow: hidden; border: 1px solid var(--color-border); }
.map-bg { width: 100%; height: 100%; position: relative; }
.map-street { background: #fff; position: absolute; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.map-street.vertical { width: 25px; height: 100%; left: 30%; }
.map-street.horizontal { height: 25px; width: 100%; top: 50%; transform: translateY(-50%); }
.map-park { position: absolute; top: 0; right: 0; width: 40%; height: 40%; background: #D6E6D6; border-bottom-left-radius: 50px; }
.map-station-block { position: absolute; bottom: 20px; left: 20px; background: #333; color: white; padding: 5px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; z-index: 2; }
.map-pin-container { position: absolute; top: 50%; left: 60%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; z-index: 10; }
.pin { width: 30px; height: 30px; background: var(--color-clay); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.pin::after { content: ''; width: 10px; height: 10px; background: white; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.pin-label { background: white; padding: 5px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 700; margin-top: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); white-space: nowrap; }
.pulse { width: 12px; height: 12px; background: rgba(196, 122, 90, 0.5); border-radius: 50%; position: absolute; top: 25px; animation: pulse 2s infinite; }

/* Floating Labels Form */
.contact-wrapper { background: white; padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); border: 1px solid var(--color-border); }
.form-group { position: relative; margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 12px 6px; border: 1px solid #ccc; border-radius: var(--radius-md); font-family: inherit; font-size: 1rem; background: #fff; transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-forest); box-shadow: 0 0 0 3px rgba(31, 42, 36, 0.1);
}
.form-group label {
    position: absolute; top: 12px; left: 12px; font-size: 1rem; color: #888; transition: 0.3s; pointer-events: none;
}
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label, .form-group select:valid ~ label {
    top: 2px; left: 12px; font-size: 0.75rem; color: var(--color-clay); font-weight: 700;
}
.hidden { display: none; }
.success-icon { font-size: 3rem; color: var(--color-forest); margin-bottom: 15px; }

/* Mobile Sticky Bar Base */
.mobile-sticky-bar { display: none; }

/* Footer */
footer { background: var(--color-forest); color: var(--color-sand); padding: 50px 0; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-nav a { margin-left: 20px; color: #999; font-size: 0.85rem; }
.footer-nav a:hover { color: white; text-decoration: underline; }

/* --- RESPONSIVE OPTIMALISATIE --- */
@media (max-width: 900px) {
    /* Spacing Fixes */
    .section-padding { padding: 60px 0; }
    h1 { font-size: 2.4rem; margin-bottom: 1rem; }
    h2 { font-size: 1.8rem; }
    .mb-large { margin-bottom: 2rem; }
    .mt-large { margin-top: 2rem; }

    /* Grids */
    .hero-grid, .grid-2, .classes-grid, .specials-grid, .pricing-grid, .steps-grid { grid-template-columns: 1fr; }
    
    /* Hero Buttons Stacking */
    .hero-grid { display: flex; flex-direction: column-reverse; gap: 40px; text-align: center; }
    .cta-group { flex-direction: column; width: 100%; gap: 12px; }
    .btn { width: 100%; }

    .desktop-nav, .nav-actions .btn { display: none; }
    .hamburger { display: block; margin-left: auto; }

    /* USP Fix */
    .usp-grid { grid-template-columns: 1fr; gap: 32px; }
    .usp-item { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
    .usp-item p { line-height: 1.6; opacity: 0.9; }

    /* Pricing Fix */
    .pricing-card.popular { transform: scale(1); background-color: #fff9f5; border-color: var(--color-clay); order: -1; }
    
    /* Mobile Schedule Tabs Logic */
    .mobile-tabs-wrapper { display: block; position: relative; margin-bottom: 20px; }
    .mobile-tabs-nav { 
        display: flex; gap: 10px; overflow-x: auto; padding: 5px 5px 15px 5px; 
        -webkit-overflow-scrolling: touch; scrollbar-width: none; 
    }
    .mobile-tabs-nav::-webkit-scrollbar { display: none; }
    .tab-btn { background: white; border: 1px solid var(--color-border); padding: 8px 12px; border-radius: 8px; cursor: pointer; font-family: var(--font-body); font-weight: 600; min-width: 60px; height: 44px; flex-shrink: 0; }
    .tab-btn.active { background: var(--color-forest); color: white; border-color: var(--color-forest); }
    .swipe-hint { text-align: center; font-size: 0.75rem; color: #999; font-style: italic; animation: fadeText 3s infinite; }

    .day-col { display: none; }
    .day-col.active { display: block; }
    
    /* Footer */
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-nav { display: flex; flex-direction: column; gap: 10px; }
    .footer-nav a { margin: 0; }

    /* Sticky Mobile CTA Bar */
    body { padding-bottom: 80px; }
    .mobile-sticky-bar {
        display: flex; justify-content: space-between; align-items: center;
        position: fixed; bottom: 20px; left: 20px; right: 20px;
        background: rgba(31, 42, 36, 0.95); backdrop-filter: blur(10px); color: white;
        padding: 12px 20px; border-radius: 50px; z-index: 9999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        animation: slideUp 0.5s ease-out forwards;
        transform: translateY(150%);
    }
    .mobile-sticky-bar.visible { transform: translateY(0); }
    .sticky-info { display: flex; flex-direction: column; line-height: 1.2; text-align: left;}
    .sticky-info span { font-weight: 700; font-family: var(--font-heading); }
    .sticky-info small { font-size: 0.75rem; opacity: 0.8; }
    .mobile-sticky-bar .btn { width: auto; height: 36px; font-size: 0.85rem; padding: 0 20px; background: var(--color-clay); color: white; border: none; }
}

/* Animaties */
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeText { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3); opacity: 0; } }
.fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }