/* Root Variables - Boho Color Palette */
:root {
    --sage-green: #9CAF88;
    --soft-brown: #A0826D;
    --cream: #F5F1EB;
    --dusty-rose: #D4A5A5;
    --warm-white: #FEFCF9;
    --dark-sage: #7A8A6B;
    --light-sage: #E8EDE4;
    --terracotta: #C4796B;
    --golden: #D4B896;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: #4A4A4A;
    line-height: 1.6;
    background-color: var(--warm-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #3A3A3A;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6B6B6B;
}

/* Color Classes */
.text-sage { color: #333333 !important; }
.text-dusty-rose { color: #333333 !important; }
.bg-light-sage { background-color: #f8f9fa !important; }

/* Hero section overrides for white text */
.hero-section .text-dusty-rose { 
    color: #ffffff !important; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-section .text-sage { 
    color: #ffffff !important; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Navigation */
.navbar {
    background-color: rgba(254, 252, 249, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1.2rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333 !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #000000 !important;
}

.navbar-nav .nav-link {
    color: #4A4A4A !important;
    font-weight: 500;
    padding: 0.7rem 1.2rem !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover {
    color: #333333 !important;
    background-color: #f0f0f0;
}

/* Buttons */
.btn-primary-custom {
    background: #333333;
    border: 2px solid #333333;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #333333;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
                url('https://pixabay.com/get/g18d8f45638fd4c3749788ca6e1e83e16ae6738dccc04db8de8b6de120b9648cb5f90dbac7fa86569519b9be298a95bc2eaeb59f93ab2a97876c43cd98812cade_1280.jpg') center/cover;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2.5rem;
    gap: 1rem;
}

/* Crisis Box Styling */
.crisis-box {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #333333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.crisis-box h3,
.crisis-box h4,
.crisis-box h5,
.crisis-box h6 {
    color: #000000 !important;
    text-shadow: none !important;
}

.crisis-box p, 
.crisis-box strong,
.crisis-box span,
.crisis-box div {
    color: #000000 !important;
    text-shadow: none !important;
}

.crisis-box * {
    color: #000000 !important;
    text-shadow: none !important;
}

.hero-section .crisis-box * {
    color: #000000 !important;
    text-shadow: none !important;
}

/* Sections */
.about-section,
.services-section,
.therapist-section,
.resources-section,
.contact-section,
.nature-section,
.testimonials-section {
    padding: 80px 0;
}

/* About Section */
.about-content {
    padding-left: 2rem;
}

.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--light-sage);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(156, 175, 136, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
}

.service-card h4 {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-sage);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: "✓";
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Therapist Section */
.therapist-content {
    padding-right: 2rem;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-sage);
    position: relative;
    padding-left: 1.5rem;
}

.credentials li:before {
    content: "•";
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quote-box {
    background: var(--light-sage);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    position: relative;
}

.quote-box:before {
    content: '"';
    font-size: 4rem;
    color: var(--sage-green);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

/* Resources Section */
.resource-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.resource-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-sage);
}

.resource-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.resource-item h6 {
    color: var(--sage-green);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.stars {
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    color: var(--sage-green);
    font-weight: 500;
}

/* Contact Section */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--light-sage);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--sage-green);
    box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.contact-info-item {
    padding: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--light-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 2rem;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

/* Footer */
.footer-section {
    background: #333333;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-section h5,
.footer-section h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section .text-muted {
    color: #ffffff !important;
}

.footer-section p {
    color: #ffffff;
}

.footer-section i {
    color: #ffffff;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-links a:hover {
    background: #ffffff;
    color: #333333 !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .therapist-content {
        padding-left: 0;
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .hero-section {
        text-align: center;
        padding: 100px 0 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .crisis-box {
        margin: 0 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0.2rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Styling */
.rounded-lg {
    border-radius: 20px !important;
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.resource-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--sage-green);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer-section,
    .flash-messages {
        display: none;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
}
