﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ─── CSS Variables ───────────────────────────────────────────── */
:root {
    --forest: #1a3a2a;
    --forest-mid: #2c5f3f;
    --forest-light: #3d7a52;
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-pale: #f0d080;
    --cream: #f9f5ec;
    --text-dark: #1c1c1c;
    --text-light: #f9f5ec;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-deep: 0 8px 40px rgba(0,0,0,0.22);
    --radius-pill: 50px;
    --radius-card: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--cream);
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* ─── Header ──────────────────────────────────────────────────── */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    padding: 14px 40px;
    box-shadow: var(--shadow-deep);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
}

/* ─── Logo Area ───────────────────────────────────────────────── */
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: transform var(--transition);
}

    .logo:hover {
        transform: scale(1.05) rotate(-1deg);
    }

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ─── Menu Area ───────────────────────────────────────────────── */
.menu-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ─── Primary Navigation ──────────────────────────────────────── */
.navA a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    margin-left: 28px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}

    .navA a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 1.5px;
        background: var(--gold-light);
        transition: width var(--transition);
    }

    .navA a:hover {
        color: var(--gold-pale);
    }

        .navA a:hover::after {
            width: 100%;
        }

/* ─── Book Now Button ─────────────────────────────────────────── */
.book {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--forest) !important;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    margin-left: 32px;
    box-shadow: 0 3px 14px rgba(184, 134, 11, 0.45);
    transition: all var(--transition) !important;
}

    .book::after {
        display: none !important;
    }

    .book:hover {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%) !important;
        color: var(--forest) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(184, 134, 11, 0.55) !important;
    }

/* ─── Burger Icon ─────────────────────────────────────────────── */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    cursor: pointer;
    padding: 2px 0;
    transition: transform var(--transition);
}

    .burger:hover {
        transform: scale(1.1);
    }

    .burger span {
        display: block;
        height: 2px;
        background-color: rgba(255,255,255,0.9);
        border-radius: 2px;
        transition: background-color var(--transition);
    }

    .burger:hover span {
        background-color: var(--gold-pale);
    }


/* ===== TITLE ===== */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-shadow: 0 3px 10px rgba(0,0,0,0.18);
    display: inline-block;
    margin: 0 12px;
    transition: transform var(--transition), color var(--transition);
    margin-top: 30px;
    margin-left: 30px;
}

.section-title {
    margin-left: 30px;
    font-size: 30px;
    font-weight: 700;
}
/* ===== FEMALE ===== */
.female-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px auto 60px;
    max-width: 1000px;
    padding: 0 20px;
}

.female-card {
    text-align: center;
}

    .female-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: top center;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-soft);
    }

/* ===== MALE ===== */
.male-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px auto 60px;
    max-width: 1200px;
    padding: 0 20px;
}

.male-card {
    text-align: center;
}

    .male-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: top center;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-soft);
    }

/* ===== TEXT BELOW PHOTOS ===== */
.name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 25px;
    margin-top: 14px;
}

.desc {
    font-size: 20px;
    color: #333;
    margin-top: 8px;
    line-height: 1.4;
    padding: 0 12px;
}



/* ─── Navbar Container ────────────────────────────────────────── */
#navbar {
    position: relative;
}

#dropdownContent {
    position: fixed;
    top: calc(95px + 28px + 1px);
    right: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    box-shadow: var(--shadow-deep);
    padding: 30px 40px;
    z-index: 1000;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3em;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

    #dropdownContent.show {
        display: flex;
        transform: translateX(0) !important;
        opacity: 1;
        visibility: visible;
    }

    #dropdownContent a {
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        font-family: 'Lato', sans-serif;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color var(--transition);
        transition: transform 0.35s ease;
    }

        #dropdownContent a:hover {
            color: var(--gold-pale);
            transform: translateX(4px);
        }

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.25s ease;
}

.menu-item:hover .menu-icon {
    transform: translateX(4px);
}

/* ─── Therapist Selector ────────────────────────────────────────── */
.therapist-toggle {
    display: flex;
    justify-content: center;
    background-color: #e0e0e0;
    padding: 4px;
    border-radius: 50px;
    width: fit-content;
    margin: 30px auto;
}

.toggle-btn {
    border: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #666;
}

    .toggle-btn.active {
        background-color: #1a3a2a;
        color: white !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transform: scale(0.95);
    }

        .toggle-btn.active:hover {
            background-color: #2c5f3f;
            color: white !important;
            box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
        }

    .toggle-btn:hover {
        transform: translateY(-3px);
        color: #1a3a2a;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

.female-section, .male-section {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 58, 42, 0.2);
    border-radius: var(--radius-card);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-soft);
    padding: 30px;
    margin: 20px auto;
    max-width: 1200px;
}


/* ─── Tablet View (481px to 1024px) ─────────────────────────── */
@media (min-width: 481px) and (max-width: 1024px) {
    .header {
        height: 90px; /* Slightly taller for tablet proportion */
        padding: 10px 30px !important;
        justify-content: space-between !important;
    }

    .logo {
        width: 70px !important; /* Larger than mobile, smaller than desktop */
    }

    .brand-name {
        font-size: 22px !important;
        max-width: none; /* Allow name to sit on one line */
        white-space: nowrap;
    }

    .menu-area {
        gap: 20px !important;
    }

    .book {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }

    .navA {
        display: inline-block !important;
    }

    #dropdownContent {
        width: 35% !important; /* Not as wide as mobile */
        top: 87px !important; /* Matches header height */
    }
    /* Grid: 2 columns look much more professional on Tablet */
    .female-grid, .male-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        padding: 0 40px !important;
    }

    .female-card img, .male-card img {
        height: 350px !important; /* Slightly shorter than mobile to fit 2-up */
        object-fit: cover;
    }

    /* Typography scaling */
    .title {
        font-size: 48px !important;
        margin-left: 40px !important;
    }

    .section-title {
        font-size: 28px !important;
        margin-left: 40px !important;
    }

    .name {
        font-size: 24px !important;
    }

    .desc {
        font-size: 16px !important;
    }
}
@media (max-width: 480px) {
    .header {
        height: 80px;
        padding: 10px 15px !important;
        justify-content: space-between !important;
        gap: 10px;
    }

    .logo {
        width: 40px !important;
    }

    .brand-name {
        font-size: 14px !important;
        max-width: 130px;
        line-height: 1.2;
        white-space: normal;
        width: 92px;
    }

    .menu-area {
        display: flex !important;
        flex-shrink: 0 !important;
        gap: 10px !important;
    }

    .book {
        display: inline-block !important;
        padding: 6px 12px !important;
        font-size: 10px !important;
        margin-left: 0 !important;
    }

    .female-grid, .male-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 25px !important;
    }

    .female-card img, .male-card img {
        height: 400px !important;
        width: 100% !important;
    }
    .female-section, .male-section{
        width: 370px;
    }

    .title {
        font-size: 38px !important;
        margin-left: 15px !important;
        display: block;
    }

    .section-title {
        font-size: 22px !important;
        margin-left: 15px !important;
    }

    .name {
        font-size: 22px !important;
    }

    .desc {
        font-size: 14px !important;
        color: #555;
    }

    #dropdownContent {
        width: 60% !important;
        top: calc(50px + 28px + 1px) !important; 
        padding-top: 50px !important;
    }
}
