/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* === NAVBAR === */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    height: 10vh;
}

/* Logo */
.logo img {
    height: 5rem;
    object-fit: contain;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    font-size: 1.2rem;
}

.nav-links li a:hover {
    color: #007BFF;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    z-index: 1000;
    min-width: 200px;
}

.dropdown-content li {
    list-style: none;
    padding: 0.5rem 1rem;
}

.dropdown-content li a {
    color: #333;
    font-size: 0.95rem;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
    display: block;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #555;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007BFF;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger active state (X) */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Dropdown Socials */
.mobile-socials {
    display: none;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
}

/* Hide on desktop */
.desktop-only {
    display: flex;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 1rem 2rem;
        border-top: 1px solid #e0e0e0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin-bottom: 1rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-socials {
        display: flex;
    }
}

/* === FOOTER === */
footer {
    background-color: #1e1e1e;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}


/* FOOTER SECTION  */
.footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0 2rem;
    font-size: 0.95rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    max-width: 100%;
}

.footer-section {
    flex: 1 1 300px;
    align-self: center;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-socials a {
    color: #ccc;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #007BFF;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    top: 0;
    left: 0;
}

.award-img {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

.footer-links a {
    color: #aaa;
    margin-left: 1rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #007BFF;
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1rem;
    display: inline-block;
    z-index: 999;
    text-align: center;
    transition: background 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        display: inline-block;
        margin: 0.3rem 0.5rem;
    }
}