/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ===== About Header ===== */
.about-header {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: var(--bg-white);
    text-align: center;
}

/* ===== Brand Story ===== */
.brand-story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.story-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 450px;
    background: linear-gradient(135deg, var(--bg-sage-subtle), var(--bg-blush-subtle));
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image .material-symbols-outlined {
    font-size: 140px;
    color: var(--primary);
    opacity: 0.15;
}

.story-text h2 {
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.story-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-highlight {
    background: var(--bg-sage-subtle);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin: var(--spacing-md) 0;
}

.story-highlight p {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

/* ===== Mission & Values ===== */
.mission-values {
    background: var(--bg-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.mission-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

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

.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.mission-icon .material-symbols-outlined {
    font-size: 32px;
}

.mission-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== Core Values ===== */
.core-values {
    background: var(--bg-sage-subtle);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.value-item {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--sage));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.value-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.05rem;
    font-weight: 700;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Why Home Yoga Matters ===== */
.why-home-yoga {
    background: var(--bg-white);
}

.home-yoga-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-top: var(--spacing-xl);
}

.home-yoga-points {
    list-style: none;
}

.home-yoga-points li {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    transition: all var(--transition-fast);
}

.home-yoga-points li:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-card);
    transform: translateX(6px);
}

.home-yoga-points strong {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.home-yoga-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 500px;
    background: linear-gradient(135deg, var(--bg-sage-subtle), var(--bg-blush-subtle));
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.home-yoga-image .material-symbols-outlined {
    font-size: 120px;
    color: var(--primary);
    opacity: 0.15;
}

/* ===== Trainer Philosophy ===== */
.trainer-philosophy {
    background: #2e5052;
    color: var(--bg-white);
}

.trainer-philosophy .section-subtitle {
    color: var(--sage);
}

.trainer-philosophy .section-title,
.trainer-philosophy .section-description {
    color: var(--bg-white);
}

.philosophy-content {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
}

.philosophy-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.philosophy-box h3 {
    color: var(--sage);
    margin-bottom: var(--spacing-md);
}

.philosophy-box p {
    color: rgba(250, 250, 250, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
}

.philosophy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.philosophy-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-feature h4 {
    color: #e2e8f0;
    /* Light/White for contrast on dark background */
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
}

.philosophy-feature h4 .material-symbols-outlined {
    font-size: 18px;
}

.philosophy-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    /* Increased opacity/lightness for better visibility */
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--primary);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--sage);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===== CTA Section ===== */
.about-cta {
    background: var(--bg-white);
    text-align: center;
}

.about-cta-box {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
}

.about-cta-box h2 {
    font-weight: 300;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {

    .story-content,
    .home-yoga-content {
        grid-template-columns: 1fr;
    }

    .home-yoga-image {
        position: static;
        height: 350px;
    }
}

@media (max-width: 768px) {

    .story-image,
    .home-yoga-image {
        height: 300px;
    }

    .mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-features {
        grid-template-columns: 1fr;
    }
}