/* ========================================
   SHARON ZABALA YOGA - STATIC WEBSITE
   Design: Modern Wellness Luxury
   Colors: Sage/Taupe palette with deep accents
   Typography: Serif headers + sans-serif body
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #F8F6F3;
    color: #1A1A1A;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

h2 {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

h3 {
    font-family: 'Georgia', 'Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

h4 {
    font-family: 'Georgia', 'Garamond', serif;
    font-weight: 600;
    color: #1A1A1A;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #3C3C3C;
}

a {
    color: #3D3D5C;
    text-decoration: none;
    transition: color 250ms ease-in-out;
}

a:hover {
    color: #A8B8A8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #3C3C3C;
    transition: color 250ms ease-in-out;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #A8B8A8;
    transition: width 250ms ease-in-out;
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #A8B8A8 0%, #9E9080 100%);
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    box-shadow: 0 4px 12px rgba(168, 184, 168, 0.2);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 184, 168, 0.3);
    color: #FFFFFF !important;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:focus {
    outline: 2px solid #3D3D5C;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        background-color: #F8F6F3;
        padding: 2rem;
        border-bottom: 1px solid rgba(168, 184, 168, 0.2);
    }
    
    .nav.active {
        display: flex;
    }
    
    .header-content {
        padding: 1rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(168, 184, 168, 0.1) 0%, rgba(158, 144, 128, 0.1) 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #3C3C3C;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background-color: transparent;
    color: #3D3D5C;
    padding: 0.75rem 1.5rem;
    border: 2px solid #A8B8A8;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    display: inline-block;
}

.secondary-button:hover {
    background-color: #A8B8A8;
    color: white;
    transform: translateY(-2px);
}

.secondary-button:focus {
    outline: 2px solid #3D3D5C;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
    }
}

/* Credibility Band */
.credibility {
    background-color: #FFFFFF;
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

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

.credibility-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A8B8A8;
    margin-bottom: 0.5rem;
}

.credibility-text {
    font-size: 1.1rem;
    color: #3C3C3C;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: #F8F6F3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(168, 184, 168, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 250ms ease-in-out;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(168, 184, 168, 0.15);
    border-color: rgba(168, 184, 168, 0.4);
}

.service-card h3 {
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.service-card p {
    color: #3C3C3C;
    font-size: 0.95rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Positioning Section */
.positioning {
    background: linear-gradient(135deg, rgba(168, 184, 168, 0.08) 0%, rgba(158, 144, 128, 0.08) 100%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(168, 184, 168, 0.2);
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.positioning-content {
    max-width: 900px;
    margin: 0 auto;
}

.positioning h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.positioning-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-title {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-desc {
    color: #3C3C3C;
    font-size: 0.95rem;
}

/* Logistics Section */
.logistics {
    background-color: #FFFFFF;
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.logistics-content {
    max-width: 900px;
    margin: 0 auto;
}

.logistics h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.logistics-text {
    font-size: 1.05rem;
    color: #3C3C3C;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-areas {
    background-color: #F8F6F3;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #A8B8A8;
    margin-top: 2rem;
}

.service-areas h4 {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.service-areas p {
    color: #3C3C3C;
    font-size: 0.95rem;
}

/* Session Process */
.session-process {
    background-color: #F8F6F3;
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #A8B8A8;
    margin-bottom: 1rem;
}

.step-title {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: #3C3C3C;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background-color: #FFFFFF;
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: #F8F6F3;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 184, 168, 0.2);
}

.testimonial-text {
    color: #3C3C3C;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1A1A1A;
    font-style: normal;
}

.testimonial-role {
    color: #A8B8A8;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* FAQ Section */
.faq {
    background-color: #F8F6F3;
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #FFFFFF;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 184, 168, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1A1A1A;
    background-color: #FFFFFF;
    transition: all 250ms ease-in-out;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

.faq-question:hover {
    background-color: #F8F6F3;
}

.faq-question:focus {
    outline: 2px solid #3D3D5C;
    outline-offset: -2px;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #3C3C3C;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(168, 184, 168, 0.1) 0%, rgba(158, 144, 128, 0.1) 100%);
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(168, 184, 168, 0.2);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    color: #3C3C3C;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    text-align: center;
}

.contact-method-title {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.contact-method a {
    color: #A8B8A8;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-method a:hover {
    color: #3D3D5C;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(168, 184, 168, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(168, 184, 168, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1A1A1A;
    background-color: #F8F6F3;
    transition: all 250ms ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #A8B8A8;
    box-shadow: 0 0 0 3px rgba(168, 184, 168, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-submit {
    background: linear-gradient(135deg, #A8B8A8 0%, #9E9080 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    box-shadow: 0 4px 12px rgba(168, 184, 168, 0.2);
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 184, 168, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:focus {
    outline: 2px solid #3D3D5C;
    outline-offset: 2px;
}

.privacy-note {
    font-size: 0.85rem;
    color: #A8B8A8;
    text-align: center;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background-color: #1A1A1A;
    color: #E0E0E0;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(168, 184, 168, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact a {
    color: #A8B8A8;
    font-weight: 600;
}

.footer-contact a:hover {
    color: #FFFFFF;
}

.footer-divider {
    height: 1px;
    background-color: rgba(168, 184, 168, 0.2);
    margin: 1.5rem 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #A8B8A8;
    line-height: 1.6;
}

.footer-service-areas {
    font-size: 0.9rem;
    color: #A8B8A8;
    margin-top: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A8B8A8 0%, #9E9080 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(168, 184, 168, 0.2);
    transition: all 250ms ease-in-out;
    z-index: 998;
    text-decoration: none;
    line-height: 1;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 184, 168, 0.3);
    color: white;
}

.back-to-top:focus {
    outline: 2px solid #3D3D5C;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
