body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0A1931; /* Solid background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Floating effect */
    z-index: 1000; /* Ensure it's on top */
    color: #fff;
    transition: all 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 40px; /* Base height for top bar */
}

.site-header .logo {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700; /* Gold color for logo */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 20px;
}

/* Desktop Navigation */
.desktop-nav-and-buttons {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allows nav and buttons to take available space */
    justify-content: flex-end; /* Align to right */
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #FFD700;
}

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

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

/* Header Buttons (Desktop) */
.header-buttons {
    display: flex;
    gap: 15px;
    margin-left: 30px; /* Space between nav and buttons */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px; /* Rounded corners */
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow */
    cursor: pointer;
}

.btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A1931; /* Dark text */
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4); /* Glow effect */
}

.btn-secondary {
    background-color: #1a3a60; /* Darker blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #1a3a60;
}

.btn-secondary:hover {
    background-color: #2a4a70;
    box-shadow: 0 6px 15px rgba(26, 58, 96, 0.4); /* Glow effect */
}

/* Mobile specific elements (hidden by default on desktop) */
.hamburger-menu,
.mobile-nav,
.header-buttons.mobile-only {
    display: none;
}

/* Footer */
.site-footer {
    background-color: #0A1931;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column .logo {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.footer-column p {
    margin-bottom: 10px;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFD700;
}

.footer-contact a {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 15px;
    }
    .site-header .logo {
        font-size: 24px;
    }
    .header-buttons {
        margin-left: 15px;
        gap: 10px;
    }
    .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .desktop-nav-and-buttons {
        display: none; /* Hide desktop nav and buttons */
    }

    .header-top {
        padding: 10px 15px;
        min-height: 40px; /* Base height for mobile top bar */
        justify-content: space-between; /* To balance hamburger and pseudo-element */
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001; /* Above mobile-nav and buttons */
        position: relative; /* To ensure z-index applies */
        order: 1; /* Hamburger on left */
    }

    .hamburger-menu .bar {
        width: 100%;
        height: 3px;
        background-color: #FFD700;
        transition: all 0.3s ease-in-out;
    }

    .hamburger-menu.open .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger-menu.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .site-header .logo {
        flex-grow: 1; /* Allow logo to take available space */
        text-align: center; /* Center logo horizontally */
        margin-right: 0; /* Remove right margin */
        font-size: 26px; /* Adjust size for mobile */
        order: 2; /* Puts logo in the middle */
    }

    /* This pseudo-element balances the hamburger menu on the right for logo centering */
    .header-top::after {
        content: '';
        display: block;
        width: 30px; /* Match hamburger width */
        height: 25px; /* Match hamburger height */
        order: 3; /* Place on right */
    }

    .header-buttons.mobile-only {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 10px 15px;
        background-color: #1a3a60; /* Different background for button area */
        z-index: 999; /* Below mobile-nav (1000) and hamburger (1001) */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        width: 100%;
        box-sizing: border-box; /* Include padding in width */
    }

    .mobile-nav {
        display: none; /* Hidden by default */
        position: fixed; /* Fixed position for sliding menu */
        top: 0; /* Start from top of viewport */
        left: 0;
        width: 70%; /* Adjust as needed */
        height: 100vh; /* Full viewport height */
        background-color: #0A1931;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        padding-top: 110px; /* Space for fixed header-top + mobile buttons (~60px + ~50px) */
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000; /* Above buttons, below hamburger */
    }
    
    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .mobile-nav li {
        margin-bottom: 15px;
    }

    .mobile-nav a {
        color: #fff;
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: #FFD700;
    }

    .site-footer {
        padding: 30px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h3 {
        margin-top: 30px;
    }

    .footer-column:first-child h3 {
        margin-top: 0;
    }
}