/* Specific styles for group classes page */
.group-classes-section {
    padding: 120px 5% 5rem;
    background-color: var(--color-sage);
    min-height: 100vh;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.class-info {
    display: grid;
    gap: 2rem;
    padding: 1rem;
}

.intro-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.intro-text {
    flex: 1;
    max-width: 60%;
}

.intro-image {
    flex: 1;
    max-width: 40%;
}


.group-yoga-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.private-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.class-info h2 {
    color: var(--color-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.class-info h3 {
    color: var(--color-brown);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.schedule, 
.pricing, 
.class-details {
    background-color: var(--color-beige);
    padding: 2rem;
    border-radius: 10px;
}

.class-times {
    list-style: none;
}

.class-times li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-tan);
}

.price-list {
    list-style: none;
}

.price-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-tan);
}

.class-details ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.class-details li {
    margin-bottom: 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .group-classes-section {
        padding: 100px 3% 3rem;
    }

    .section-container {
        padding: 1rem;
    }

    .intro-container {
        flex-direction: column;
    }

    .intro-image {
        order: -1; /* Makes image appear above text on mobile */
        max-width: 100%;
    }

    .group-yoga-photo {
        height: 250px;
    }

    .class-times li {
        flex-direction: column;
        gap: 0.5rem;
    }
}