body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding-top: 120px; } a { text-decoration: none; color: #007BFF; } a:hover { text-decoration: underline; } ul { list-style: none; padding: 0; margin: 0; } .site-header { position: fixed; top: 0; width: 100%; background-color: #007BFF; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); z-index: 1000; min-height: 60px; } .site-header .header-main { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; min-height: 60px; z-index: 1002; } .site-header .logo { font-size: 1.8em; font-weight: bold; color: #FFD700; text-decoration: none; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); white-space: nowrap; flex-grow: 1; text-align: center; } .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: 1003; } .hamburger-menu .bar { width: 100%; height: 3px; background-color: #fff; border-radius: 1px; 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); } .main-nav { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background-color: #007BFF; transition: left 0.3s ease-in-out; z-index: 999; overflow-y: auto; padding-top: 120px; display: flex; flex-direction: column; align-items: center; } .main-nav.active { left: 0; } .main-nav ul { width: 100%; text-align: center; padding: 20px 0; } .main-nav li { margin: 15px 0; } .main-nav a { color: #fff; font-size: 1.2em; padding: 10px 20px; display: block; width: 100%; text-align: center; font-weight: bold; white-space: nowrap; } .main-nav a:hover, .main-nav a.active { color: #FFD700; background-color: rgba(255, 255, 255, 0.1); border-radius: 5px; } .header-buttons.mobile-only { display: flex; justify-content: center; gap: 15px; padding: 10px 15px; background-color: #0056b3; z-index: 1001; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); width: 100%; } .header-buttons.mobile-only .btn { flex: 1; max-width: 150px; padding: 12px 15px; font-size: 0.9em; } .header-buttons.desktop-only, .main-nav, .mobile-spacer { display: none; } .mobile-spacer { width: 30px; height: 25px; display: block; } @media (min-width: 769px) { body { padding-top: 80px; } .site-header { flex-direction: row; justify-content: space-between; align-items: center; padding: 0 20px; min-height: 80px; } .site-header .header-main { flex-grow: 1; justify-content: flex-start; padding: 0; min-height: auto; } .site-header .logo { margin-right: 30px; flex-grow: 0; text-align: left; } .hamburger-menu, .mobile-spacer { display: none; } .main-nav { position: static; display: flex; width: auto; height: auto; background-color: transparent; transition: none; z-index: auto; overflow-y: visible; padding-top: 0; flex-grow: 1; justify-content: center; } .main-nav ul { display: flex; flex-direction: row; text-align: left; padding: 0; } .main-nav li { margin: 0 15px; } .main-nav a { color: #fff; font-size: 1em; padding: 5px 0; text-align: left; } .main-nav a:hover, .main-nav a.active { color: #FFD700; background-color: transparent; border-radius: 0; } .header-buttons.desktop-only { display: flex; gap: 10px; margin-left: 30px; z-index: auto; } .header-buttons.mobile-only { display: none; } } .btn { display: inline-block; padding: 10px 20px; border-radius: 25px; text-decoration: none; font-weight: bold; text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); color: #fff; white-space: nowrap; } .btn-primary { background: linear-gradient(45deg, #007BFF, #0056b3); border: none; } .btn-primary:hover { background: linear-gradient(45deg, #0056b3, #007BFF); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); transform: translateY(-2px); } .btn-secondary { background: linear-gradient(45deg, #FFD700, #DAA520); border: none; color: #333; } .btn-secondary:hover { background: linear-gradient(45deg, #DAA520, #FFD700); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); transform: translateY(-2px); } .site-footer { background-color: #333; color: #fff; padding: 40px 20px 20px; font-size: 0.9em; } .site-footer .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 30px; } .site-footer .footer-column { flex: 1; min-width: 250px; margin-bottom: 20px; } .site-footer h3 { color: #FFD700; margin-bottom: 15px; font-size: 1.2em; } .site-footer p { margin-bottom: 10px; } .site-footer .footer-nav ul { list-style: none; padding: 0; } .site-footer .footer-nav li { margin-bottom: 8px; } .site-footer .footer-nav a { color: #fff; text-decoration: none; white-space: nowrap; } .site-footer .footer-nav a:hover { color: #FFD700; text-decoration: underline; } .site-footer .footer-bottom { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #444; font-size: 0.8em; } body.no-scroll { overflow: hidden; }