/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Header Styles */
.site-header {
    background-color: #0A2342; /* Primary color */
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700; /* Accent color for logo */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #fff;
}

.main-nav .nav-list {
    display: flex;
    gap: 1.5rem;
}

.main-nav .nav-list a {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700; /* Accent color */
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}

.main-nav .nav-list a:hover {
    color: #FFD700; /* Accent color */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFD700; /* Accent color */
    border-radius: 5px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}


/* Footer Styles */
.site-footer {
    background-color: #0A2342; /* Primary color */
    color: #fff;
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #FFD700; /* Accent color */
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFD700; /* Accent color */
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700; /* Accent color */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .hamburger-menu {
        display: flex; /* Show hamburger on mobile */
    }

    .main-nav {
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: #0A2342; /* Primary color */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        z-index: 999;
    }

    .main-nav.active {
        max-height: 500px; /* Adjust as needed for menu content */
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .main-nav .nav-list li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .main-nav .nav-list a::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: unset;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .footer-nav li {
        margin-bottom: 0;
    }
}