/* BASIS & VARIABELEN */
:root {
    --primary-orange: #ff7300;
    --dark-bg: #0f172a;
    --slate-card: #1e293b;
    --white: #ffffff;
}

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

body { 
    font-family: 'Rajdhani', sans-serif; 
    background-color: var(--dark-bg); 
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.main-header {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(15,23,42,0.9), rgba(15,23,42,0.9)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    border-bottom: 4px solid var(--primary-orange);
}

.logo-main { width: 280px; filter: drop-shadow(0 0 15px var(--primary-orange)); }
.brand-title { font-family: 'Orbitron'; font-size: 2rem; letter-spacing: 3px; margin-top: 10px; }

/* HORIZONTALE NAVIGATIE */
.nav-horizontal {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 115, 0, 0.2);
}

.nav-list {
    display: flex;
    list-style: none; /* Verwijdert stipjes bij navigatie */
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 5px;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-item i { font-size: 1.2rem; margin-bottom: 4px; color: var(--primary-orange); }
.nav-item.active { color: var(--primary-orange); border-bottom: 2px solid var(--primary-orange); }

/* GRID SYSTEM (Mobile First) */
.container { padding: 1.5rem; max-width: 1200px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 2rem; font-family: 'Orbitron'; font-size: 1.6rem; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobiel eerst */
    gap: 35px; /* Verhoogd van 15px naar 25px voor meer ruimte */
    margin-bottom: 40px; /* Extra ruimte onder de diensten-rij */
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px; /* Ruimte tussen 'Waarom Duski' en de 'Locatie' kaart[cite: 3] */
    margin-top: 50px; /* Extra witruimte boven deze sectie[cite: 3] */
}

.card {
    background: var(--slate-card);
    padding: 30px; /* Meer binnenruimte in de blokken zelf[cite: 3] */
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* Subtiele schaduw geeft diepte[cite: 3] */
}

.card i { font-size: 2.5rem; color: var(--primary-orange); margin-bottom: 1rem; }

/* CHECK-LIST (Geen stipjes!)[cite: 3] */
.check-list {
    list-style: none; /* Verwijdert de stipjes uit image_ea5055.png[cite: 3] */
    margin-top: 20px;
    text-align: left;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i { color: #4ade80; font-size: 1.2rem; }

/* DESKTOP OPTIMALISATIE[cite: 3] */
@media (min-width: 768px) {
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 35px; /* Nog meer ruimte op grotere schermen[cite: 3] */
    }
    .info-layout { 
        grid-template-columns: 1.2fr 1fr; 
        gap: 40px; 
    }
}

@media (min-width: 1024px) {
    .services-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 25px; 
    }
}
/* --- VERBETERDE AFSPRAAK LAYOUT --- */
.booking-form {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form .card {
    padding: 30px;
    margin-bottom: 20px;
    text-align: left; /* Tekst links uitlijnen voor betere leesbaarheid */
}

.booking-form h3 {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,115,0,0.2);
    padding-bottom: 5px;
}

/* Velden fixen: niet meer stretchen */
.booking-form input, 
.booking-form textarea {
    width: 100% !important;
    max-width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #0f172a !important;
    border: 1px solid #334155 !important;
    color: white !important;
    border-radius: 6px;
    display: block;
}

/* Tijdsloten horizontaal in plaats van een lange lijst */
.slot-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.time-slot {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.time-slot:hover { border-color: var(--primary-orange); }
.selected-time { background: var(--primary-orange) !important; border-color: var(--primary-orange); }

/* Verzendknop */
.btn-flashy-large {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(90deg, #ff7300, #ff4500);
    border: none;
    color: white;
    font-family: 'Orbitron';
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .booking-form .info-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
/* Tijdsloten als knoppen[cite: 3] */
.slot-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.time-radio input {
    display: none; /* Verberg het standaard bolletje[cite: 3] */
}

.time-radio span {
    display: block;
    background: #1e293b;
    border: 1px solid #334155;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.time-radio input:checked + span {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px var(--primary-orange);
}
/* FOOTER */
.main-footer {
    background: #020617;
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 115, 0, 0.1);
}

.contact-info a { color: var(--primary-orange); text-decoration: none; font-weight: bold; }
.footer-credits { opacity: 0.5; font-size: 0.8rem; margin-top: 30px; }