/* Yoga Page Specific Styles */

/* Hero Section */
.yoga-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/yoga-hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sound-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/sound-hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.retreats-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/retreats-hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
    color: white;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Yoga Buttons */
.yoga-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    background-color: #8FA89E;
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 8px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yoga-btn:hover,
.sound-btn:hover,
.retreats-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Sound Buttons */
.sound-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    background-color: #8B9DAF;
    /* Dusty blue */
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 8px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Retreats Buttons */
.retreats-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    background-color: #D4A59A;
    /* Soft coral */
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 8px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Class Sections */
.class-section {
    padding: 80px 20px;
}

.yin-section {
    background-color: #F7F5F2;
}

.chair-section {
    background-color: #EAE8E5;
}

.sound-section {
    background-color: #F7F5F2;
}

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

.class-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.class-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .yoga-hero {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .yoga-btn {
        font-size: 1.1rem;
        padding: 14px 40px;
    }

    .class-section {
        padding: 60px 20px;
    }

    .class-content h2 {
        font-size: 2rem;
    }

    .class-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .yoga-btn {
        font-size: 1rem;
        padding: 12px 35px;
    }

    .class-content h2 {
        font-size: 1.8rem;
    }
}