/* ============================================
   Mending Minds Therapy - Main Stylesheet
   Brand Colors: Gold/Mustard #C9A227
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #C9A227;
    --primary-light: #d4a574;
    --primary-dark: #a68217;

    /* Neutral Colors */
    --dark: #34586E;
    --text: #34586E;
    --text-light: #4a6b7d;
    --light-bg: #fffbf5;
    --white: #ffffff;
    --accent: #D9C1AA;

    /* Typography */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

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

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

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

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: #34586E;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
    align-items: center;
}

.nav-link {
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #34586E;
}

.nav-highlight {
    color: #34586E;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid var(--primary);
    border-radius: 3px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    border: 1px solid #eee;
    border-radius: 3px;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: var(--spacing-md) var(--spacing-lg);
}

.dropdown-menu a {
    color: var(--dark);
    font-size: 15px;
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    right: 20px;
    top: 200px;
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    z-index: 50;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 150px;
}

.sidebar-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.sidebar-btn {
    display: inline-block;
    background: var(--white);
    color: #34586E;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
}

.sidebar-btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: #34586E;
    border: 2px solid var(--primary);
}

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

/* Hero Section */
.hero {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    padding-right: var(--spacing-xl);
}

.hero-tagline {
    font-size: 48px;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Find Belonging Section */
.belonging {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.belonging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.section-heading {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.belonging-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: var(--spacing-xl);
}

.belonging-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Quote Section */
.quote-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.quote {
    text-align: center;
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.quote p {
    margin-bottom: var(--spacing-lg);
}

.quote cite {
    font-style: normal;
    font-weight: 600;
    color: #34586E;
    display: block;
    margin-top: var(--spacing-md);
}

/* Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.service-item {
    padding: var(--spacing-2xl);
    background: var(--light-bg);
    border-radius: 8px;
}

.service-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.service-item p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: var(--spacing-2xl);
}

/* Footer */
.footer {
    background: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.contact-info h3 {
    font-size: 20px;
    color: #34586E;
    margin-bottom: var(--spacing-lg);
}

.contact-detail {
    margin-bottom: var(--spacing-lg);
    font-size: 15px;
}

.contact-detail strong {
    color: var(--dark);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.contact-detail a {
    color: #34586E;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    padding: var(--spacing-sm) 0;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #34586E;
}

.insurance-info {
    text-align: right;
}

.insurance-text {
    font-size: 18px;
    font-weight: 600;
    color: #34586E;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: var(--spacing-xl);
    font-size: 14px;
    color: var(--text-light);
}

.design-credit {
    font-size: 12px;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-inner {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
        justify-content: center;
    }

    .nav-link {
        font-size: 12px;
    }

    .nav-highlight {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .floating-sidebar {
        right: 10px;
        top: auto;
        bottom: 100px;
        max-width: 130px;
        padding: var(--spacing-lg);
    }

    .hero-grid,
    .belonging-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-tagline {
        font-size: 36px;
    }

    .section-heading {
        font-size: 32px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .insurance-info {
        text-align: left;
    }

    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 28px;
    }

    .section-heading {
        font-size: 24px;
    }

    .nav-menu {
        gap: var(--spacing-md);
    }

    .quote {
        font-size: 16px;
    }

    .floating-sidebar {
        max-width: 120px;
        padding: var(--spacing-md);
    }

    .sidebar-text {
        font-size: 12px;
    }
}

/* ============================================
   Local SEO Content Sections
   ============================================ */

/* Hero Enhancements */
.hero-location {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #34586E;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.hero-subtext {
    font-size: 17px;
    color: var(--text);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* Services Intro */
.services-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text);
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Why Choose Us Section */
.why-choose {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.feature-item {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--primary);
}

.feature-item h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.feature-item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Location Section */
.location-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

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

.location-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.areas-served {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    list-style: none;
    margin: var(--spacing-xl) 0;
    padding: 0;
}

.areas-served li {
    background: var(--light-bg);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
    border-left: 3px solid var(--primary);
}

.location-cta {
    font-size: 18px;
    margin-top: var(--spacing-xl);
}

.location-cta a {
    color: #34586E;
    font-weight: 600;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .areas-served {
        gap: var(--spacing-sm);
    }

    .hero-location {
        font-size: 12px;
    }
}
