.classes-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                      url('../../assets/images/about.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
    margin-top: 60px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Program Types */
.program-types {
    padding: 4rem 0;
    background-color: var(--color-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.program-features {
    list-style: none;
    margin-top: 1rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.program-features i {
    color: var(--color-accent);
}

/* Class Schedule */
.class-schedule {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.schedule-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    background: none;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.schedule-day {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-day h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
}

.class-slot {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-left: 3px solid var(--color-accent);
}

.class-slot .time {
    display: block;
    font-weight: bold;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.class-slot .class-name {
    display: block;
    color: var(--color-dark);
}

/* Belt System */
.belt-system {
    padding: 4rem 0;
    background-color: var(--color-light);
}

.belt-progression {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.belt-level {
    text-align: center;
}

.belt {
    width: 200px;
    height: 40px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.belt.white { background-color: #fff; border: 1px solid #ddd; }
.belt.yellow { background-color: #ffd700; }
.belt.green { background-color: #228b22; }
.belt.brown { background-color: #8b4513; }
.belt.black { background-color: #000; }

.belt-level h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.belt-level p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Class Info */
.class-info {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-filters {
        justify-content: center;
    }

    .belt {
        width: 150px;
    }

    .belt-progression {
        gap: 1rem;
    }
}

.classes-hero .hero-content h1 {
    color: #c41e3a;  /* Red color for the main title */
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.classes-hero .hero-content p {
    color: white;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.program-video {
    width: 100%;
    height: 200px;  /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
    background: #000;  /* Black background for letterboxing */
}

.program-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* This will crop/scale the video to fill the container */
    position: absolute;
    top: 0;
    left: 0;
} 