/* ============================================
   BRINIQUE LASHES — GEDEELDE STIJLEN
   ============================================ */

/* --- HUISSTIJL VARIABELEN --- */
:root {
    --primary-gold: #D5BCA8;
    --primary-gold-hover: #c4aa94;
    --bg-dark: #121212;
    --bg-card: #1C1C1C;
    --text-light: #F5F5F5;
    --text-grey: #B0B0B0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-gold);
    font-weight: 400;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- HEADER --- */
header {
    background-color: rgba(18, 18, 18, 0.98);
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(213, 188, 168, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 55px; width: auto; }

nav ul { display: flex; gap: 40px; align-items: center; }

nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    padding: 10px 0;
    position: relative;
}

nav a:hover { color: var(--primary-gold); }

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}
nav a:hover::after { width: 100%; }
nav a.btn-book::after { display: none; }

/* --- KNOPPEN --- */
.btn-book {
    background-color: var(--primary-gold);
    color: var(--bg-dark) !important;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    display: inline-block;
}

.btn-book:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 25px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(213, 188, 168, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-gold);
    cursor: pointer;
}

/* --- BREADCRUMB --- */
.breadcrumb {
    padding: 120px 5% 20px;
    font-size: 0.85rem;
    color: var(--text-grey);
}
.breadcrumb a { color: var(--primary-gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* --- PAGE HERO (dienst pagina's) --- */
.page-hero {
    padding: 40px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-style: italic;
}

.page-hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 750px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.hero-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* --- CONTENT SECTIES --- */
.content-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section.alt-bg {
    background-color: var(--bg-card);
    max-width: 100%;
    padding: 80px 5%;
}

.content-section.alt-bg .content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-style: italic;
}

.content-section p {
    color: var(--text-grey);
    margin-bottom: 20px;
    max-width: 800px;
}

/* --- TWO COLUMN LAYOUT --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--primary-gold);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(213, 188, 168, 0.2);
    padding: 25px 0;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.faq-item p { margin-bottom: 0; }

/* --- CTA SECTIE --- */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)), url('/header.png');
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- LOCATIE TEASER --- */
.location-teaser {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(213, 188, 168, 0.1);
    padding: 25px 30px;
    border-radius: 4px;
    margin-top: 40px;
    max-width: 600px;
}

.location-teaser i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.location-teaser p {
    margin: 0;
    color: var(--text-light);
}

.location-teaser strong { color: var(--primary-gold); }

/* --- FOOTER --- */
footer {
    background-color: #0d0d0d;
    padding: 60px 5% 30px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-address {
    font-size: 1.2rem;
    margin: 20px 0;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 20px;
    color: var(--primary-gold);
    transition: 0.3s;
}

.social-icons a:hover { color: #fff; }

.copyright {
    font-size: 0.75rem;
    color: #555;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-grey);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover { color: var(--primary-gold); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col img { box-shadow: none; }
    .page-hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 20px;
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: #121212;
        padding: 40px 0;
        border-bottom: 1px solid var(--primary-gold);
    }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    .btn-book { width: 80%; text-align: center; }
    .hero-features { flex-direction: column; gap: 15px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
