:root {
    --green: #28A745;
    --yellow: #FFC107;
    --blue: #007BFF;
    --white: #FFFFFF;
    --black: #333;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    --transition: 0.3s ease-in-out;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: var(--white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.video-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    height: 60px;
}

/* Logo styling */
.navbar .logo img {
    height: 50px;
}

/* Hamburger - hidden by default */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Navigation links (desktop view) */
.nav-links {
    display: flex;
    gap: 1.5rem;
}

/* Hide nav-links on smaller screens */
@media (max-width: 868px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--blue);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1rem;
        box-shadow: var(--box-shadow);
    }

    /* Show hamburger only on smaller screens */
    .hamburger {
        display: block;
    }

    /* Toggle navigation when hamburger is clicked */
    .nav-links.show {
        display: flex;
    }
}

/* Link styling */
.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--yellow);
}

.hero {
    height: 100vh;
    background: url('../images/slider2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    font-size: 4rem;
    color: var(--green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-text span {
    color: purple;
}


/* Content Sections */
.content {
    padding: 2rem;
    line-height: 1.6;
}

h2 {
    color: #004080;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

.grade-level {
    margin-bottom: 1.5rem;
}

.grade-level h3 {
    margin-top: 1rem;
    color: #333;
}

/* General Footer Styles */
.footer {
    background-color: #002244; /* Dark blue */
    color: #fff;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #ffd700; /* Gold color */
}

.footer p, .footer a {
    font-size: 1em;
    color: #ddd;
    line-height: 1.6;
}

.footer a {
    text-decoration: none;
    color: #ffd700;
}

.footer a:hover {
    color: yellow;
}

/* Footer Layout - Top Section */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-info, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

/* Image Section Styling */
.footer-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-images img {
    width: 300px; /* Fixed width */
    height: 130px; /* Fixed height */
    object-fit: cover;
    border-radius: 8px;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5em;
    color: #ffd700;
}

.social-icons a:hover {
    color: #bde024;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 0.9em;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        margin-top: 20px;
    }

    .footer-images {
        align-items: center;
    }
}
