﻿/* Reset */
body, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Top Nav */
.top-nav {
    background-color: #004080;
    width: 100%;
}

    .top-nav .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

/* Logo */
.logo a {
    color: #fff; /* White color */
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .menu li a {
        color: #fff; /* White font color */
        text-decoration: none;
        padding: 8px 12px;
        display: block;
        transition: 0.3s;
    }

        .menu li a:hover {
            background-color: #0066cc;
            border-radius: 4px;
        }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #004080;
        display: none;
    }

        .menu.active {
            display: flex;
        }

        .menu li {
            text-align: center;
            width: 100%;
        }

    .hamburger {
        display: flex;
    }
}
