/* ═══════════════════════════════════════════════════════════════════
   INTENTIONAL HEALING ESSENCE — Peaceful Wellness Styles
   Inspired by sunset tones: warm peach, lavender, soft gold, deep blue.
   ═══════════════════════════════════════════════════════════════════ */

:root {
    /* Sunset Inspired Palette */
    --bg-primary: #FFF9F5; /* Very soft warm peach/cream for open spaces */
    --bg-alt: #F4EFEB; /* Soft warm gray/lavender tint for alternate sections */
    
    --text-main: #2D3748; /* Deep slate/blue for readable text */
    --text-muted: #718096; /* Softer slate */
    
    --accent-gold: #D69E2E; /* Soft gold for buttons/accents */
    --accent-gold-hover: #B7791F;
    
    --accent-blue: #2B6CB0; /* Deep blue accent */
    --accent-peach: #ED8936; /* Warm peach accent */

    --border-color: #E2E8F0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Geometry */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

/* ─── Reset ────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.8;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button, input, select, textarea { font: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }
ul { list-style: none; }

/* ─── Layout ───────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 100px 0; }
.section-alt { background-color: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 64px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--text-main); }
.section-header p { font-size: 1.125rem; color: var(--text-muted); }

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-weight: 500; border-radius: var(--radius-pill);
    transition: var(--transition); font-family: var(--font-body);
}
.btn-primary {
    background-color: var(--accent-gold); color: #fff;
    box-shadow: 0 4px 14px rgba(214, 158, 46, 0.3);
}
.btn-primary:hover {
    background-color: var(--accent-gold-hover); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}
.btn-outline {
    background-color: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.1); border-color: #fff;
}
.btn-large { font-size: 1.125rem; padding: 16px 40px; }
.btn-full { width: 100%; }

/* ─── Navigation ───────────────────────────────────────────────── */
#main-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: var(--transition);
    padding: 24px 0;
}
#main-nav.scrolled {
    background-color: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.nav-brand a { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; }
#main-nav.scrolled .nav-brand a { color: var(--text-main); }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 1rem; }
.nav-links a:hover { color: #fff; }
#main-nav.scrolled .nav-links a { color: var(--text-muted); }
#main-nav.scrolled .nav-links a:hover { color: var(--text-main); }

.nav-actions { display: flex; gap: 16px; align-items: center; }
#main-nav.scrolled .nav-actions .btn-outline {
    color: var(--text-main); border-color: var(--border-color);
}
#main-nav.scrolled .nav-actions .btn-outline:hover {
    background-color: var(--bg-alt);
}

/* Mobile Menu Toggle */
#mobile-menu-toggle { display: none; flex-direction: column; gap: 6px; }
.hamburger-line { width: 24px; height: 2px; background-color: #fff; transition: var(--transition); }
#main-nav.scrolled .hamburger-line { background-color: var(--text-main); }


/* ─── Hero Section ─────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

/* Subtle dark blue overlay for text readability */
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 23, 42, 0.45); /* Deep blue, 45% opacity */
    z-index: 1;
}

/* Gradient fade at the bottom to transition into the next section */
.hero-fade-bottom {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 150px;
    background: linear-gradient(to bottom, rgba(255, 249, 245, 0) 0%, var(--bg-primary) 100%);
    z-index: 2;
}

.hero-content {
    position: relative; z-index: 3; max-width: 800px;
    margin-top: 60px; /* Offset for nav */
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 24px; font-weight: 500;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300; font-style: italic;
    margin-bottom: 32px; color: var(--accent-gold);
}

.hero-content p {
    font-size: 1.25rem; max-width: 600px; margin: 0 auto 48px;
    line-height: 1.6; opacity: 0.9;
}


/* ─── About Section ────────────────────────────────────────────── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: center;
}
.britt-photo-placeholder {
    aspect-ratio: 3/4; background-color: var(--bg-alt);
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-family: var(--font-heading); font-size: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.about-text h3 { font-size: 2.5rem; margin-bottom: 24px; color: var(--accent-blue); }
.about-text .lead-text { font-size: 1.25rem; font-weight: 500; color: var(--text-main); margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; color: var(--text-muted); }
.about-quote {
    margin: 32px 0; padding: 24px 32px;
    border-left: 4px solid var(--accent-peach);
    background-color: var(--bg-alt); border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic; font-size: 1.125rem; color: var(--text-main);
}
.about-signoff { font-family: var(--font-heading); font-size: 1.5rem; font-style: italic; color: var(--accent-gold); margin-top: 32px; }


/* ─── Services Section ─────────────────────────────────────────── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px;
}
.service-card {
    background-color: #fff; padding: 48px 32px; border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); text-align: center;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.service-icon { font-size: 3rem; margin-bottom: 24px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--accent-blue); }
.service-card p { color: var(--text-muted); }


/* ─── Specialties Section ──────────────────────────────────────── */
.specialties-wrapper {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 800px; margin: 0 auto;
}
.specialty-pill {
    padding: 12px 24px; background-color: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius-pill); font-size: 1.125rem; color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); transition: var(--transition);
}
.specialty-pill:hover { border-color: var(--accent-peach); color: var(--accent-peach); transform: translateY(-2px); }


/* ─── Contact Section ──────────────────────────────────────────── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 16px; }
.contact-info .lead-text { margin-bottom: 40px; color: var(--text-muted); }
.contact-list { margin-bottom: 48px; }
.contact-list li { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; font-size: 1.125rem; }
.contact-list .icon { font-size: 1.5rem; }
.contact-hours h3 { font-size: 1.25rem; margin-bottom: 16px; color: var(--accent-blue); }
.contact-hours p { color: var(--text-muted); margin-bottom: 8px; }

.wellness-form {
    background-color: #fff; padding: 48px; border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; color: var(--text-main); }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border-color);
    border-radius: var(--radius-md); background-color: var(--bg-primary);
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-gold); background-color: #fff; }

.form-success { text-align: center; padding: 48px; background-color: #fff; border-radius: var(--radius-lg); }
.form-success h3 { color: var(--accent-gold); font-size: 1.5rem; margin-bottom: 16px; }
.form-success p { color: var(--text-muted); margin-bottom: 24px; }


/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer { background-color: var(--text-main); color: #fff; padding: 64px 0 24px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; flex-wrap: wrap; gap: 32px; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.875rem; }


/* ─── Animations ───────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }


/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .nav-links, .nav-actions { display: none; }
    #mobile-menu-toggle { display: flex; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.25rem; }
    .hero-content h2 { font-size: 1.5rem; }
    .wellness-form { padding: 32px 24px; }
    .footer-content { flex-direction: column; text-align: center; }
}
