/* ================= YOGA STUDIO PAGE STYLES ================= */

/* Hero Image */
.yoga-studio-hero {
    width: 100%;
    margin-top: 0;
}

.yoga-studio-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Yoga Studio Section */
.yoga-studio-section {
    background: #ffffff;
}

.feature-card {
    background: #f7fafc;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Blooming Soon Section */
.blooming-soon-section {
    padding: 80px 0;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .yoga-studio-section h1 {
        font-size: 2rem;
    }
    
    .blooming-soon-section h2 {
        font-size: 2rem;
    }
}

