/* === MARWELLA DAMESKAPSALON - Warm Modern Feminine === */
/* Kleurenpalet: Cream/Teal/Roségoud - HEEL anders dan Ed! */

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

:root {
    --cream: #F5F0E8;
    --cream-dark: #EBE5DC;
    --teal: #3D5A5E;
    --teal-dark: #2D4246;
    --rosegold: #E8B4A0;
    --rosegold-light: #F2C9B8;
    --blush: #F2D4C2;
    --charcoal: #2D2926;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(61,90,94,0.08);
    border-bottom: 2px solid var(--rosegold);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.03em;
}

.logo span { color: var(--rosegold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--teal);
}

/* === HERO - Uniek: Foto full-width met overlay === */
.hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61,90,94,0.85) 0%, rgba(45,66,70,0.75) 50%, rgba(232,180,160,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content h1 em {
    color: var(--rosegold);
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--rosegold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(232,180,160,0.4);
}

.cta-primary:hover {
    background: var(--rosegold-light);
    transform: translateY(-2px);
}

.cta-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.cta-outline:hover {
    background: var(--white);
    color: var(--teal);
}

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
}

.trust-item { text-align: center; }

.trust-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
}

.trust-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-top: 0.3rem;
}

/* === SECTIONS === */
section { padding: 5rem 2rem; }

section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--teal);
}

.section-subtitle {
    text-align: center;
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* === SERVICES - Grid met foto's === */
.services { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61,90,94,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(61,90,94,0.15);
}

.service-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info { padding: 1.5rem; }

.service-info h3 {
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.service-info .duration {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.service-info .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rosegold);
    margin-bottom: 0.8rem;
}

.service-info p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.service-cta:hover { background: var(--teal-dark); }

/* === GALLERY === */
.gallery { background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* === ABOUT === */
.about { background: var(--white); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(61,90,94,0.12);
}

/* === REVIEWS === */
.reviews { background: var(--cream); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(61,90,94,0.08);
}

.review-stars {
    color: var(--rosegold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--teal);
}

/* === CONTACT === */
.contact { background: var(--white); }

/* Desktop: side-by-side */
@media (min-width: 769px) {
    .contact-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* Mobile: stacked */
@media (max-width: 768px) {
    .contact-inner {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .map { height: 250px; }
    .map iframe { min-height: 250px; height: 250px; }
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info a {
    color: var(--teal);
    text-decoration: none;
}

.contact-info a:hover { text-decoration: underline; }

.map iframe {
    width: 100%;
    border-radius: 16px;
    border: none;
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0.8rem 1rem;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 0.5rem;
}

.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.sticky-cta .btn-call {
    background: var(--rosegold);
    color: var(--white);
}

.sticky-cta .btn-book {
    background: var(--teal);
    color: var(--white);
}

/* === FOOTER === */
footer {
    background: var(--teal);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

footer p { opacity: 0.9; }

/* === MOBILE STICKY VISIBLE === */
@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    body { padding-bottom: 60px; }
}

/* === DESKTOP LAYOUT === */
@media (min-width: 769px) {
    .contact-info-full {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .contact-info-full > h3:first-of-type {
        grid-column: 1 / -1;
    }
    
    .contact-info-full > p:nth-of-type(2),
    .contact-info-full > p:nth-of-type(3),
    .contact-info-full > p:nth-of-type(4) {
        /* Adres, telefoon, email */
    }
    
    .contact-info-full > h3:nth-of-type(2) {
        grid-column: 1 / -1;
        margin-top: 1rem !important;
    }
}

/* === MOBILE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        box-shadow: 0 4px 15px rgba(61,90,94,0.1);
    }

    .nav-links.active { display: flex; }

    .hamburger { display: block; }

    .hero-content h1 { font-size: 2.5rem; }

    .trust-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    .map { width: 100%; height: 250px; flex: none !important; }
    .map iframe { min-height: 250px; height: 250px; width: 100%; }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
