/* ======================== */
/*        General Reset      */
/* ======================== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ======================== */
/*         Header           */
/* ======================== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #002d72;
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* ======================== */
/*        Navigation        */
/* ======================== */
.hamburger {
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Hide menu by default */
/* Removed 2/26//2025
.nav-menu {
    display: none !important; --/ Ensure menu is hidden /
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #002d72;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}*/

/* Hide menu by default */
.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 250px; /* Limit menu width */
    background-color: #e0e0e0; /* Set same gray background */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

/* Show menu when toggled */
.nav-menu.show {
    display: flex !important;
    opacity: 1;
}

.nav-menu a {
    color: #002d72; /* Blue text for better readability */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
.nav-menu a:hover {
    background-color: #d0d0d0; /* Slightly darker gray when hovered */
    color: #0056b3; /* Slightly deeper blue for hover */
    border-radius: 5px;
}

/* ======================== */
/*        Main Content      */
/* ======================== */
.main-content {
    flex: 1;
    padding: 20px;
    background-color: white;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* ======================== */
/*         Footer           */
/* ======================== */
.footer {
    background-color: #002d72;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: auto;
}

/* ======================== */
/*     Responsive Design    */
/* ======================== */
/* Replaced 2/26/2025
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        width: 100%;
        left: 0;
        right: 0;
        text-align: center;
    }
}
*/
/* Mobile-specific menu adjustments (Updated: 2025-02-23) */
@media (max-width: 768px) {
    .nav-menu {
        width: 250px; /* Match popup menu size */
        top: 50px;
        right: 10px;
        background-color: #f0f0f0 !important; /* Ensure same gray shade as PC */
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.show {
        display: flex;
    }
}