/* Page Hero Section */
.page-hero {
    background: var(--secondary-color);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.page-hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page-hero-content .description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Yoga Classes Section */
.yoga-classes {
    padding: 4rem 0;
    background: var(--text-light);
}

.yoga-classes h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .class-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.class-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.class-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.class-card p {
    color: #666;
    line-height: 1.8;
}

/* Special Programs Section */
.special-programs {
    padding: 4rem 0;
    background: #fafafa;
}

.special-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.program-card {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.program-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.program-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.program-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Therapeutic Section */
.therapeutic-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.therapeutic-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.therapeutic-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.therapeutic-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.therapeutic-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--text-light);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.pricing-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.pricing-card .duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .note {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

/* Active Navigation Link */
.nav-menu a.active {
    opacity: 0.8;
    border-bottom: 2px solid var(--text-light);
    padding-bottom: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .program-card,
    .therapeutic-card {
        padding: 2rem;
    }
    
    .special-programs h2,
    .therapeutic-section h2 {
        font-size: 2rem;
    }
}
