/* ===================================
   Don Givens - Personal Website
   Warm Earth Tone Color Palette
   =================================== */

:root {
    /* Primary Colors - Premium Soft Earth Tones */
    /* Sage / Green Family (Calming, Growth) */
    --color-sage-light: #E0E8E1;
    /* Very light background sage */
    --color-sage: #8DA993;
    /* Main sage brand color */
    --color-sage-dark: #5B7561;
    /* Deeper text/contrast sage */
    --color-forest: #2D4035;
    /* Darkest green for headings */

    /* Terracotta / Warm Family (Grounding) */
    --color-terracotta-bg: #FDF6F3;
    /* Warm blush background */
    --color-terracotta: #D4A373;
    /* Accent warmth */
    --color-terracotta-dark: #A97142;

    /* Neutrals */
    --color-cream: #FAF9F6;
    /* Off-white, softer than pure white */
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    /* Soft charcoal, less harsh than black */
    --color-text-light: #6E6E6E;
    --color-border: #E5E5E5;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Layout */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --container-max: 1100px;
    /* Slightly tighter for better reading line-lengths */

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    /* Softer, larger radiuses */
    --radius-lg: 24px;
    --radius-pill: 9999px;

    --shadow-soft: 0 10px 40px -10px rgba(45, 64, 53, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(45, 64, 53, 0.12);

    --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    /* Smoother text */
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-forest);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

p {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
    /* Larger, more readable body text */
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sage-dark);
    margin-bottom: var(--space-sm);
    background-color: var(--color-sage-light);
    padding: 0.25em 0.75em;
    border-radius: var(--radius-pill);
}

.section-intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 650px;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-pill);
    /* Pill shape */
    transition: all var(--transition-medium);
    cursor: pointer;
    border: 1px solid transparent;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(45, 64, 53, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 64, 53, 0.3);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-forest);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-cream);
    border-color: var(--color-sage);
    color: var(--color-sage-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-white {
    background-color: var(--color-white);
    color: var(--color-forest);
    border-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.85);
    /* Glass effect */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all var(--transition-medium);
    height: 90px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: flex-start;
    /* Bring elements together */
    align-items: center;
    gap: 60px;
    /* Define precise spacing between logo and nav */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
    text-decoration: none;
}

.logo-image {
    height: 90px;
    /* Increased for better visibility */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.logo:hover .logo-image {
    transform: scale(1.02);
}

/* Removed Icon styles as requested */

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem;
}

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

.nav-cta {
    padding: 0.75rem 1.75rem !important;
    background-color: var(--color-forest);
    color: var(--color-white) !important;
    border-radius: var(--radius-pill);
    transition: all var(--transition-medium) !important;
}

.nav-cta:hover {
    background-color: var(--color-sage-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 64, 53, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--color-forest);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered vertically and horizontally */
    padding: calc(90px + var(--space-xl)) var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-cream) 100%);
    overflow: hidden;
    text-align: center;
    /* Center text */
}

/* Soft decorative blob for hero */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(141, 169, 147, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    /* Add a second blob for balance */
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    display: none;
    /* Removed dark overlay for cleaner look */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    /* Enhance centering */
    margin: 0 auto;
    /* Enhance centering */
}

.hero-greeting {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-sage-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
}

.hero h1 {
    color: var(--color-forest);
    margin-bottom: var(--space-md);
    text-shadow: none;
    /* Removed shadow */
}

.hero h1 .highlight {
    color: var(--color-terracotta);
    /* Warm accent */
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 750px;
    /* Slightly wider for centered reading */
    line-height: 1.6;
    font-weight: 300;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    align-items: center;
    justify-content: center;
    /* Center buttons */
}

.hero-location {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.hero-location::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-terracotta);
    border-radius: 50%;
}

/* About Section */
.about {
    padding: var(--space-2xl) 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20%;
    bottom: 20px;
    background-color: var(--color-terracotta-bg);
    z-index: -1;
    border-radius: var(--radius-lg);
}

.pronouns {
    font-size: 0.875rem;
    color: var(--color-terracotta-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-personal {
    font-style: italic;
    color: var(--color-sage-dark) !important;
    border-left: 3px solid var(--color-sage);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
}

.credentials {
    background-color: var(--color-cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    border: 1px solid var(--color-border);
}

.credentials p {
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
}

/* Approach Section */
.approach {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.modality-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.modality-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    color: var(--color-sage);
    background-color: var(--color-sage-light);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modality-icon svg {
    width: 100%;
    height: 100%;
}

.modality-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Focus Section */
.focus {
    padding: var(--space-2xl) 0;
    background-color: var(--color-white);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.focus-card {
    padding: var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.focus-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-sage-light);
    transform: translateY(-5px);
}

.focus-card h3 {
    font-size: 1.25rem;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.focus-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Fees Banner */
.fees-banner {
    padding: var(--space-2xl) 0;
    background-color: var(--color-terracotta-bg);
}

.fees-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fees-content h3 {
    color: var(--color-terracotta-dark);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.fees-content p {
    color: var(--color-text);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

/* FAQ Section (NEW) */
.faq {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.faq-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: var(--space-2xl) 0;
    background-color: var(--color-white);
}

.blog-placeholder {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
    border: 1px dashed var(--color-sage);
}

/* CTA Section */
.cta-section {
    padding: var(--space-2xl) 0;
    background-color: var(--color-forest);
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.cta-section>.container>p {
    color: var(--color-sage-light);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-sm);
    text-align: center;
    display: block;
    width: 100%;
}

/* Footer */
.main-footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: var(--color-cream);
    /* Light footer */
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--color-forest);
}

.footer-info p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.footer-links a {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.9375rem;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-sage-dark);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
    }

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

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-white);
        padding: var(--space-md);
        gap: var(--space-sm);
        display: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
    }

    .hero {
        padding-top: calc(80px + var(--space-xl));
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-md);
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }

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