/**
 * Services Page Specific Styles
 */

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Schedule Styles */
.schedule-container {
    margin-top: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.schedule-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.schedule-prev, .schedule-next {
    background: var(--accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.schedule-prev:hover, .schedule-next:hover {
    background: var(--accent-dark);
}

.schedule-days {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.schedule-day-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.schedule-day-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.schedule-content {
    padding: 2rem;
}

.schedule-classes {
    display: grid;
    gap: 1rem;
}

.schedule-class {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
}

.schedule-class.beginner {
    border-left-color: #3498db;
}

.schedule-class.advanced {
    border-left-color: #e74c3c;
}

.schedule-class.kids {
    border-left-color: #f39c12;
}

.schedule-class.community {
    border-left-color: #9b59b6;
}

.class-time {
    font-weight: 600;
    color: var(--accent-dark);
    min-width: 100px;
}

.class-info h4 {
    margin-bottom: 0.3rem;
}

.class-info p {
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0;
}

.no-classes {
    text-align: center;
    padding: 2rem;
    color: var(--accent);
}

.no-classes a {
    color: var(--accent-dark);
    text-decoration: none;
}

.no-classes a:hover {
    text-decoration: underline;
}

/* Schedule Legend */
.schedule-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.beginner {
    background: #3498db;
}

.legend-color.advanced {
    background: #e74c3c;
}

.legend-color.kids {
    background: #f39c12;
}

.legend-color.community {
    background: #9b59b6;
}

/* CTA Section */
.cta-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-container h2 {
    margin-bottom: 1rem;
}

.cta-container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .schedule-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
