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

:root {
    --main-primary: #959D90;
    --main-secondary: #fff7f0;
    --main-tertiary: #EFEFE9;
    --main-quadary: #523D35;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--main-quadary);
    background-color: var(--main-secondary);
    line-height: 1.6;
}

/* ===== Navigation ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background-color: var(--main-primary);
    z-index: 1000;
    transition: padding 0.3s ease;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-secondary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--main-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* ===== Hero Section ===== */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--main-primary);
    text-align: center;
    padding: 100px 40px 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--main-secondary);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-leaf {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.7;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: var(--main-secondary);
    opacity: 0.8;
    margin-top: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== About Section ===== */

.section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.headshot-container {
    flex-shrink: 0;
}

.headshot {
    width: 280px;
    height: 340px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(82, 61, 53, 0.15);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--main-quadary);
}

.about-text p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--main-quadary);
    opacity: 0.85;
}

/* ===== Divider ===== */

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--main-primary);
    margin: 0 auto;
    opacity: 0.5;
}

/* ===== Modalities Section ===== */

.modalities-section {
    background-color: var(--main-tertiary);
    padding: 80px 40px;
    text-align: center;
}

.modalities-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--main-quadary);
}

.modalities-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.modality-card {
    background-color: var(--main-secondary);
    padding: 32px 28px;
    border-radius: 4px;
    width: 240px;
    box-shadow: 0 2px 12px rgba(82, 61, 53, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(82, 61, 53, 0.12);
}

.modality-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main-quadary);
}

/* ===== CTA / Schedule Section ===== */

.cta-section {
    text-align: center;
    padding: 80px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--main-quadary);
}

.cta-section p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.85;
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background-color: var(--main-quadary);
    color: var(--main-secondary);
}

.btn-primary:hover {
    background-color: #3e2e28;
}

/* ===== Footer ===== */

.footer {
    background-color: var(--main-primary);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--main-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 1;
}

.footer-socials img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ===== Schedule Page ===== */

.schedule-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 35vh;
    background-color: var(--main-primary);
    text-align: center;
    padding: 100px 40px 50px;
}

.schedule-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--main-secondary);
    letter-spacing: 2px;
}

.schedule-body {
    padding: 60px 40px;
    min-height: 50vh;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-body p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 24px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero {
        min-height: 55vh;
        padding: 80px 24px 40px;
    }

    .hero-leaf {
        width: 60px;
    }

    .about {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 60px 24px;
    }

    .headshot {
        width: 220px;
        height: 280px;
    }

    .modalities-section {
        padding: 60px 24px;
    }

    .modalities-grid {
        flex-direction: column;
        align-items: center;
    }

    .modality-card {
        width: 100%;
        max-width: 300px;
    }

    .cta-section {
        padding: 60px 24px;
    }

    .schedule-hero {
        min-height: 30vh;
        padding: 80px 24px 40px;
    }

    .schedule-body {
        padding: 40px 24px;
    }
}
