html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; } body { margin: 0; font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background-color: #f4f4f4; } :root { --primary-color: #0A1931; --accent-color: #E0B400; --text-color-light: #fff; --text-color-dark: #0A1931; } .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background-color: var(--primary-color); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); min-height: 60px; display: flex; flex-direction: column; justify-content: center; } .header-main-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 15px 30px; width: 100%; } .header-top-mobile { display: none; } .logo { font-size: 2.2em; font-weight: bold; color: var(--accent-color); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; margin-right: 20px; } .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; } .main-nav li a { padding: 10px 15px; color: var(--text-color-light); text-decoration: none; font-weight: bold; transition: color 0.3s ease, background-color 0.3s ease; border-radius: 5px; } .main-nav li a:hover, .main-nav li a.active { color: var(--text-color-dark); background-color: var(--accent-color); } .header-buttons { display: flex; gap: 10px; } .header-buttons.mobile-buttons { display: none; } .btn { display: inline-block; padding: 12px 25px; border-radius: 25px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; text-align: center; white-space: nowrap; border: none; cursor: pointer; } .btn-primary { background-color: var(--accent-color); color: var(--text-color-dark); box-shadow: 0 0 15px rgba(224, 180, 0, 0.6); } .btn-primary:hover { background-color: #f0c510; box-shadow: 0 0 20px rgba(224, 180, 0, 0.8); transform: translateY(-2px); } .btn-secondary { background-color: #34495e; color: var(--text-color-light); border: 1px solid #34495e; box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); } .btn-secondary:hover { background-color: #4a627a; border-color: #4a627a; transform: translateY(-2px); } .site-footer { background-color: var(--primary-color); color: #ccc; padding: 40px 30px 20px; font-size: 0.9em; margin-top: 60px; /* To prevent footer from being hidden by fixed header */ } .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; } .footer-col { flex: 1; min-width: 250px; } .footer-logo { font-size: 1.8em; font-weight: bold; color: var(--accent-color); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: block; } .footer-col h3 { color: var(--accent-color); margin-bottom: 15px; font-size: 1.2em; } .footer-col p, .footer-col a { color: #ccc; text-decoration: none; line-height: 1.8; } .footer-col a:hover { color: var(--accent-color); } .footer-nav { list-style: none; margin: 0; padding: 0; } .footer-nav li a { display: block; padding: 5px 0; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 20px; } @media (max-width: 1024px) { .header-main-wrapper { padding: 15px 20px; } .main-nav li a { padding: 8px 12px; font-size: 0.9em; } .logo { font-size: 2em; } } @media (max-width: 768px) { body { padding-top: 130px; /* Adjust for fixed header height on mobile */ } .site-header { flex-direction: column; align-items: stretch; min-height: unset; } .header-main-wrapper { flex-direction: column; padding: 10px 15px; align-items: flex-start; } .header-top-mobile { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 10px; position: relative; z-index: 1001; } .hamburger-menu { display: block; width: 30px; height: 24px; cursor: pointer; position: relative; background: none; border: none; padding: 0; z-index: 1001; } .hamburger-menu .bar { display: block; width: 100%; height: 3px; background-color: var(--accent-color); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; } .hamburger-menu.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger-menu.open .bar:nth-child(2) { opacity: 0; } .hamburger-menu.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .logo { flex: 1; text-align: center; margin: 0; font-size: 2em; } .header-placeholder { width: 30px; } .main-nav { display: none; flex-direction: column; width: 100%; background-color: var(--primary-color); position: absolute; top: 100%; left: 0; z-index: 1001; box-shadow: 0 8px 16px rgba(0,0,0,0.2); animation: slideDown 0.3s ease-out forwards; } .main-nav.active { display: flex; } @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .main-nav ul { flex-direction: column; width: 100%; } .main-nav li { width: 100%; } .main-nav li a { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; display: block; text-align: center; } .main-nav li:last-child a { border-bottom: none; } .header-buttons.desktop-buttons { display: none; } .header-buttons.mobile-buttons { display: flex; justify-content: center; width: 100%; padding: 10px 15px; gap: 10px; background-color: var(--primary-color); z-index: 1000; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .header-buttons .btn { flex: 1; max-width: 150px; font-size: 0.9em; padding: 10px 15px; } .footer-content { flex-direction: column; align-items: center; } .footer-col { width: 100%; max-width: 400px; text-align: center; } .footer-logo { margin-bottom: 10px; } .footer-col h3 { margin-top: 20px; } .site-footer { padding: 30px 15px 15px; } }