/* ===============================
   RESET + BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9fbff;
    color: #0a2c5e;
    overflow-x: hidden;
}

/* FIX IMAGES */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a2a66;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.menu-icon {
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* SOCIALS */
.top-socials {
    display: flex;
    gap: 10px;
}

.top-socials a {
    color: white;
    font-size: 16px;
}

/* ===============================
   SIDE MENU
================================ */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 998;
}

#navMenu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #0a2a66;
    padding-top: 80px;
    transition: 0.3s;
    z-index: 999;
}

#navMenu.active {
    left: 0;
}

#navMenu ul {
    list-style: none;
}

#navMenu li {
    padding: 15px 25px;
}

#navMenu a {
    color: white;
    text-decoration: none;
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    cursor: pointer;
}

/* SPACE FOR FIXED NAV */
body {
    padding-top: 65px;
}

/* ===============================
   HERO
================================ */
.hero, .about-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background: url('superkid2.png') center/cover no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-text, .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero-text h1, .hero-content h1 {
    font-size: 26px;
}

.hero-text p {
    font-size: 14px;
}

/* ===============================
   SECTIONS
================================ */
section {
    padding: 40px 15px;
}

/* ===============================
   ABOUT
================================ */
.about-container {
    max-width: 1100px;
    margin: auto;
}

.about-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    line-height: 1.6;
}

/* ===============================
   CARDS
================================ */
.cards,
.about-cards,
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.card,
.about-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
}

/* ===============================
   DIRECTORS
================================ */
.directors-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.director-card {
    width: 90%;
    text-align: center;
}

.director-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ===============================
   CONTACT
================================ */
.contact {
    background: #0a2c5e;
    color: white;
    text-align: center;
    padding: 40px 15px;
}

iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* CONTACT PAGE */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
}

/* ===============================
   ADMISSIONS
================================ */
#admissionsForm {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.form-step {
    display: none;
}

.form-step-active {
    display: block;
}

#admissionsForm input,
#admissionsForm select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

/* ===============================
   CAREERS
================================ */
.careers-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.careers-sidebar {
    background: #f4f7fc;
    padding: 15px;
}

.vacancy {
    background: white;
    padding: 15px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
    background: #1d4ed8;
    color: white;
    padding: 10px;
    border-radius: 6px;
    border: none;
    display: inline-block;
}

/* ===============================
   DESKTOP (ENHANCEMENTS ONLY)
================================ */
@media (min-width: 768px) {

    .hero-text h1,
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .about-flex {
        flex-direction: row;
    }

    .cards,
    .about-cards,
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .directors-grid {
        flex-direction: row;
    }

    .contact-container {
        flex-direction: row;
    }

    .careers-layout {
        display: grid;
        grid-template-columns: 250px 1fr;
    }

    #admissionsForm {
        max-width: 600px;
        margin: auto;
    }
}