/* =============================================
   puuramber — Schoonheidssalon Amsterdam-Zuid
   Brand colors: Sage green (#7a8c6e), peach, cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
    --sage: #7a8c6e;
    --sage-light: #a3b396;
    --sage-dark: #5a6b50;
    --sage-muted: #93a688;
    --peach: #d4917a;
    --peach-light: #e8b5a2;
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --warm: #f5ede4;
    --warm-white: #fffdf9;
    --dark: #2c2c2c;
    --brown: #3d3530;
    --text: #444444;
    --text-light: #777777;
    --text-muted: #999999;
    --overlay: rgba(44, 44, 44, 0.55);
    --overlay-dark: rgba(44, 44, 44, 0.7);
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.2;
}

a { color: var(--sage); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 247, 242, 0.97);
    box-shadow: var(--shadow);
    padding: 0.5rem 2rem;
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: lowercase;
    transition: color var(--transition);
}

nav.scrolled .nav-logo { color: var(--sage-dark); }

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

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--transition);
}

nav.scrolled .nav-links a { color: var(--text); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--sage);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

.nav-cta {
    background: var(--sage);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background var(--transition);
    letter-spacing: 0.5px;
}

.nav-cta:hover { background: var(--sage-dark); }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    transition: all var(--transition);
}

nav.scrolled .nav-toggle span { background: var(--text); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.btn-sage {
    background: var(--sage);
    color: white;
    box-shadow: 0 4px 15px rgba(122,140,110,0.3);
}

.btn-sage:hover {
    background: var(--sage-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122,140,110,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

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

.btn-white {
    background: white;
    color: var(--sage-dark);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--sage-dark);
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HERO (Homepage) ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(90, 107, 80, 0.15) 0%,
        rgba(44, 44, 44, 0.45) 50%,
        rgba(44, 44, 44, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 24px;
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-light);
}

.hero-stat .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 0.2rem;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero .hero-bg { filter: brightness(0.5); }

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-label {
    display: inline-block;
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ===== HIGHLIGHTS / CARDS ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
}

.card-body {
    padding: 2rem;
    text-align: center;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 300;
}

/* ===== TREATMENT CARDS ===== */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.treatment-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all var(--transition);
}

.treatment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.treatment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.treatment-card .desc {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
}

.treatment-card .duration {
    color: var(--sage);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

.treatment-price {
    text-align: right;
    white-space: nowrap;
}

.treatment-price .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--sage-dark);
    font-weight: 700;
}

.treatment-featured {
    border: 2px solid var(--sage);
    background: linear-gradient(135deg, rgba(122,140,110,0.03) 0%, rgba(122,140,110,0.08) 100%);
}

/* ===== STORY / ABOUT SECTION ===== */
.story-section {
    background: var(--sage-dark);
    color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 { color: white; }
.story-content .section-label { color: var(--sage-light); }

.story-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.story-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== INFO CARDS ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
}

.info-card a { color: var(--sage-dark); font-weight: 500; }

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== BOOKING BOX ===== */
.booking-box {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-box h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.booking-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.booking-note {
    background: var(--cream);
    border-left: 4px solid var(--sage);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: left;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.booking-note strong { color: var(--sage-dark); }

/* ===== PRODUCT BADGE ===== */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--sage-dark);
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== WAITLIST BADGE ===== */
.waitlist-badge {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waitlist-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.waitlist-badge .info {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

.waitlist-badge .info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
    margin-bottom: 0.2rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ===== HOURS TABLE ===== */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

/* ===== SPECIALTIES LIST ===== */
.specialties-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.specialties-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.specialties-list li .icon {
    color: var(--sage);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sage-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sage);
    border: 3px solid var(--cream);
}

.timeline-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-transform: lowercase;
    margin-bottom: 0.8rem;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; }

footer li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

footer li a:hover { color: var(--sage-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(90, 107, 80, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

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

    .nav-links a {
        color: white !important;
        font-size: 1.2rem;
    }

    .nav-toggle { display: flex; }

    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .treatment-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hero { min-height: 100svh; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }

    nav { padding: 0.75rem 1rem; }
    nav.scrolled { padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; align-items: center; }
    .waitlist-badge { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
    background: var(--warm);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.quote-block::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--sage-light);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.quote-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--sage-dark);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Mobile menu toggle animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
body.menu-open {
    overflow: hidden;
}


/* ===== CARD IMAGE (replacing emoji icons) ===== */
.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

/* Fix body padding for fixed nav on non-hero pages */
body {
    padding-top: 0;
}
