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

/* Colors */
:root { --primary-color: #0A2E5B; --secondary-color: #FFD700; --text-light: #f4f4f4; --text-dark: #333; }

/* Header Styles (Desktop First) */
.site-header { position: fixed; top: 0; left: 0; width: 100%; min-height: 70px; background-color: var(--primary-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.header-top-bar { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 20px; min-height: 70px; }

.logo { font-size: 2.2em; font-weight: bold; color: var(--secondary-color); text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s ease; display: block; }
.logo:hover { color: #fff; }

.main-nav { flex: 1; display: flex; justify-content: center; align-items: center; width: 100%; }
.main-nav ul { display: flex; }
.main-nav li a { padding: 15px 20px; color: var(--text-light); font-weight: 600; transition: background-color 0.3s ease, color 0.3s ease; white-space: nowrap; }
.main-nav li a:hover { background-color: rgba(255, 255, 255, 0.1); color: var(--secondary-color); }

.desktop-nav-buttons { display: flex; gap: 15px; margin-left: auto; }
.mobile-nav-buttons { display: none; } /* Hidden on desktop */

/* Buttons */
.btn { padding: 10px 20px; border-radius: 5px; font-weight: bold; text-align: center; cursor: pointer; transition: all 0.3s ease; text-decoration: none; white-space: nowrap; }
.btn-primary { background-color: var(--secondary-color); color: var(--primary-color); border: 2px solid var(--secondary-color); }
.btn-primary:hover { background-color: #e6c200; border-color: #e6c200; }
.btn-secondary { background-color: transparent; color: var(--secondary-color); border: 2px solid var(--secondary-color); }
.btn-secondary:hover { background-color: var(--secondary-color); color: var(--primary-color); }

.hamburger-menu { display: none; /* Hidden on desktop */ }
.mobile-menu-overlay { display: none; /* Hidden on desktop */ }

/* Footer Styles */
.site-footer { background-color: var(--primary-color); color: var(--text-light); padding: 40px 20px 20px; font-size: 0.9em; }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-around; max-width: 1200px; margin: 0 auto 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 30px; }
.footer-col { flex: 1; min-width: 200px; margin: 0 15px 20px; }
.footer-col h3 { color: var(--secondary-color); font-size: 1.2em; margin-bottom: 15px; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav a { color: var(--text-light); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--secondary-color); }
.footer-col p { margin-bottom: 8px; }
.footer-col a { color: var(--text-light); }
.footer-bottom { text-align: center; padding-top: 20px; }

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .site-header { flex-direction: column; align-items: stretch; min-height: auto; }
    .header-top-bar { padding: 10px 15px; min-height: 60px; }
    .logo { flex: 1; text-align: center; order: 2; font-size: 1.8em; }
    .desktop-nav-buttons { display: none; }
    .mobile-nav-buttons { display: flex; justify-content: center; gap: 10px; padding: 10px 15px; background-color: rgba(0, 0, 0, 0.2); width: 100%; box-sizing: border-box; position: relative; z-index: 1000; }

    .hamburger-menu { display: flex; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; padding: 0; order: 1; position: relative; z-index: 1002; }
    .hamburger-menu:focus { outline: none; }
    .hamburger-menu .bar { width: 100%; height: 3px; background-color: var(--secondary-color); border-radius: 2px; transition: all 0.3s ease; }
    .hamburger-menu.active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
    .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    .main-nav { display: none; /* Hidden by default */ position: fixed; top: 0; left: 0; width: 70%; max-width: 300px; height: 100%; background-color: var(--primary-color); flex-direction: column; padding-top: 80px; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3); z-index: 1001; transform: translateX(-100%); transition: transform 0.3s ease-in-out; }
    .main-nav.active { display: flex; transform: translateX(0); }
    .main-nav ul { flex-direction: column; width: 100%; text-align: center; }
    .main-nav li { width: 100%; }
    .main-nav li a { display: block; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .main-nav li:last-child a { border-bottom: none; }

    .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 999; }
    .mobile-menu-overlay.active { display: block; }

    /* Ensure main content is not obscured */
    body.no-scroll { overflow: hidden; }
    body { padding-top: calc(60px + 50px); /* header-top-bar height + mobile-nav-buttons height */ }

    .footer-container { flex-direction: column; align-items: center; }
    .footer-col { margin: 0 0 30px; text-align: center; }
    .footer-col:last-child { margin-bottom: 0; }
    .footer-col h3 { margin-top: 20px; }
}