/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background-color: #0f8f3f;
    padding: 10px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-img {
    height: 70px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ✅ HAMBURGER (DEFAULT DESKTOP HIDDEN) */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(15,143,63,0.85), rgba(15,143,63,0.85)),
    url('/img/school.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 40px;
}

.hero-content p {
    margin: 10px 0;
}

.btn-primary {
    background: white;
    color: #0f8f3f;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 60px 10%;
    text-align: center;
}

.light-bg {
    background: #f4f9f6;
}

/* FOOTER */
.footer {
    background: #0f8f3f;
    color: white;
    text-align: center;
    padding: 15px;
}


.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown:hover {
    text-decoration: underline;
    color: white;
}

.dropdown-toggle {
    color: white;
    user-select: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f4f4f4;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

    .container {
        position: relative;
    }

    /* ✅ MOVE HAMBURGER TO RIGHT EDGE */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;   
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: white;
    }

    /* NAV DROPDOWN */
    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: #0f8f3f;
        width: 100%;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
    
    
    
}