    :root {
      --base: #fdf9ed;
      --accent-dark: rgba(84, 55, 32, 0.95);
      --gold1: #d4af37;
      --gold2: #ffdf6b;
      --nav-height: 70px;
      --text: #4a3a33;
      --head:#3d2a22;
      --subhead:#7a4f33;
      --button:#7a4f33;
    }

/* CLASSES SECTION */
.classes-section {
    width: 100%;
        background-image: url("../src/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* EACH BLOCK = FULL SCREEN */
.class-block {
    min-height: 100vh;
    /* FULL SCREEN HEIGHT */
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 60px;
    justify-content: space-between;
    box-sizing: border-box;

}

/* Alternate layout */
.class-block:nth-child(even) {
    flex-direction: row-reverse;
}

/* IMAGE */
.class-img {
    width: 45%;
    height: 70vh;
    /* Makes image tall & elegant */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

/* TEXT AREA */
.class-content {
    width: 50%;
}

.class-title {
    font-size: 3rem;
    font-family: "Cinzel", serif;
    font-weight: 700;
    color: #3d2a22;
    margin-bottom: 10px;
}

.class-teacher {
    font-size: 1.8rem;
    font-weight: 600;
    color: #7a4f33;
    font-family: "Cinzel", serif;
    margin-bottom: 25px;
    opacity: 0.95;
}

.class-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
    color: #4a3a33;
    margin-bottom: 35px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 18px 35px;
    background: #7a4f33;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    transition: 0.3s ease;
}

.apply-btn:hover {
    background: #a7714e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* MOBILE */
@media (max-width: 768px) {
    .class-block {
        margin-top: 100px;
        flex-direction: column !important;
        padding: 40px 20px;
        text-align: center;
    }

    .class-img {
        width: 100%;
        height: 40vh;
    }

    .class-content {
        width: 100%;
    }

    .class-title {
        font-size: 2.2rem;
    }

    .class-teacher {
        font-size: 1.4rem;
    }

    .class-desc {
        font-size: 1.1rem;
    }
}