/* ==========================================================================
   1. Basis & Reset
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #555555;
    line-height: 1.6;
    /* Veranderd van hard wit naar een warme, zachte crèmekleur */
    background-color: #fdfbf7; 
    font-size: 15px;
}

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

/* ==========================================================================
   2. Typografie & Knoppen
   ========================================================================== */
h2, h3 {
    color: #7a667a; /* De gedempte paarse/taupe tint */
    font-weight: normal;
}

.btn {
    display: inline-block;
    background-color: #837383;
    color: #ffffff;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #6a5b6a;
}

/* ==========================================================================
   3. Header & Navigatie
   ========================================================================== */
.main-header {
    /* Ook de header krijgt de warme crèmekleur */
    background-color: #fdfbf7; 
    padding: 20px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #8e7d8e;
    font-size: 16px;
}

.main-nav a.active {
    font-weight: bold;
}

/* --- Dropdown CSS met klik-fix --- */
.main-nav ul li.dropdown {
    position: relative; /* Basis voor de positionering van het submenu */
}

.main-nav .arrow {
    font-size: 0.65em;
    margin-left: 5px;
    vertical-align: middle;
}

/* Het submenu als een zwevend verticaal blok */
.main-nav .dropdown-menu {
    display: none; /* Standaard verborgen */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    z-index: 999;
    
    /* Deze regels overbruggen de loze ruimte zodat het menu open blijft tijdens het bewegen */
    padding-top: 15px; 
    margin-top: -5px; 
}

/* Dwing de submenu-items om onder elkaar te staan en de flexbox te negeren */
.main-nav .dropdown-menu li {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Styling voor de links in het submenu */
.main-nav .dropdown-menu li a {
    display: block !important;
    padding: 12px 20px;
    color: #b59cb3; /* Mooie zachte pasteltint */
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

/* Hover effect voor de sub-links */
.main-nav .dropdown-menu li a:hover {
    background-color: #fcfafc;
    color: #6e526a;
}

/* Toon het menu bij hover */
.main-nav li.dropdown:hover .dropdown-menu {
    display: block;
}
/* --- EINDE Dropdown CSS --- */

/* ==========================================================================
   4. Hero Sectie (Aangepast voor iPhone: tekst komt NOOIT in het gezicht)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 550px;
    width: 100%;
    overflow: hidden;
    background-color: #fdfbf7;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Focus op linksboven (gezicht) bij desktop/iPad */
    object-fit: cover;
    object-position: left center; 
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: transparent; 
    min-height: 550px;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: flex-end; 
    padding-right: 5%; 
}

.hero-content h1 {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #ffffff; 
    font-size: 46px;
    font-weight: normal;
    max-width: 550px;
    text-align: right; 
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   5. Introductie & Sierlijke Quotes
   ========================================================================== */
.intro-section {
    padding: 60px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 15px;
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: 38px; 
    color: #7a667a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sub-quote {
    font-size: 34px;
}

/* ==========================================================================
   6. Sfeer Banner & Tussenkoppen
   ========================================================================== */
.banner-separator-container {
    width: 100%;
    height: 350px; 
    overflow: hidden;
    position: relative;
    display: block;
    clear: both;
}

.banner-separator-img {
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.services-intro {
    text-align: center;
    padding: 60px 20px 40px;
    clear: both;
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-intro h3 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.services-intro p {
    max-width: 900px;
    margin: 0 auto 15px;
}

.highlight-text {
    font-weight: bold;
    margin-top: 25px !important;
}

/* ==========================================================================
   7. Holistisch Therapeut Blok
   ========================================================================== */
.holistic-section {
    background-color: #fff2f2; 
    padding: 60px 0;
}

.generic-grid, .holistic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.holistic-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.holistic-text p {
    margin-bottom: 15px;
}

.holistic-list h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.holistic-list ul {
    list-style: none;
}

.holistic-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.holistic-list li::before {
    content: "•";
    color: #7a667a;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.summary-text {
    margin-top: 25px;
    font-style: italic;
}

/* ==========================================================================
   8. Tweekolom Service Secties (Reiki, Trauma, Massage, Events)
   ========================================================================== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-block {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.block-inner {
    max-width: 540px;
    width: 100%;
}

.service-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.service-block p {
    margin-bottom: 20px;
}

/* Reiki Blok (Donkerpaars) */
.reiki-block {
    background-color: #655365;
    color: #ffffff;
}

.reiki-block h2, .reiki-block h4 {
    color: #ffffff;
}

.extra-content {
    margin-top: 30px;
}

.extra-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.extra-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

/* Trauma Release Blok (Crème) */
.trauma-block {
    background-color: #fdfbf7; /* Aangepast naar crème */
    color: #555555;
}

/* Holistische Massage & Events Blokken */
.layout-light .massage-block {
    background-color: #fdfbf7; /* Aangepast naar crème */
    color: #555555;
}

.layout-light .events-block {
    background-color: #bcadbc; 
    color: #ffffff;
}

.layout-light .events-block h2 {
    color: #ffffff;
}

.poetic-quote {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #7a667a;
    line-height: 1.4;
    margin: 30px 0;
    text-align: center;
}

/* ==========================================================================
   9. Responsive Media Queries (iPad & iPhone)
   ========================================================================== */

/* Tablet & iPad Pro / Air (Onder de 1024px) */
@media (max-width: 1024px) {
    .intro-grid, .holistic-grid {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .service-block {
        padding: 60px 20px;
    }
    
    .script-text {
        font-size: 34px;
    }
    
    .banner-separator-container {
        height: 250px;
    }
}

/* Mobiel & iPhone (Onder de 768px) - HIER lossen we het gezicht-probleem op! */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro-grid, .holistic-grid, .split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Zorgt dat de afbeelding op mobiel bovenaan staat en niet achter de tekst kruipt */
    .hero-section {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-bg-img {
        position: relative;
        height: 300px; /* De foto staat nu los, vrij en duidelijk bovenaan */
        width: 100%;
        object-position: center;
    }
    
    .hero-overlay {
        position: relative;
        min-height: auto;
        padding: 30px 20px;
        /* We geven de tekst hier een mooie, zachte donkerpaarse/taupe kleur omdat wit op de crèmewit niet leesbaar is */
        background-color: #7a667a; 
    }
    
    .hero-content {
        justify-content: center; 
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 24px;
        text-align: center;
        color: #ffffff; /* Wit steekt nu prachtig af tegen het paarse tekstvlak onder de foto */
        max-width: 100%;
        text-shadow: none;
    }
    
    .services-intro h2 {
        font-size: 28px;
    }
    
    .service-block h2 {
        font-size: 30px;
    }

    .script-text, .poetic-quote {
        font-size: 28px;
        text-align: center;
    }
    
    .banner-separator-container {
        height: 180px; 
    }
}