html { scroll-behavior: smooth; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #f0f0f0; background-color: #333; padding-top: 80px; } .site-header { position: fixed; top: 0; left: 0; width: 100%; background-color: #1A2C42; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); z-index: 1000; display: flex; align-items: center; } .header-content { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .header-top { display: flex; align-items: center; justify-content: space-between; min-height: 70px; } .logo { font-size: 2.5em; font-weight: bold; color: #E0B147; text-decoration: none; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); transition: color 0.3s ease; } .logo:hover { color: #FFD700; } .main-nav { flex-grow: 1; text-align: center; margin: 0 20px; } .main-nav ul { list-style: none; display: flex; justify-content: center; gap: 25px; } .main-nav ul li a { color: #f0f0f0; text-decoration: none; font-size: 1.1em; padding: 8px 0; position: relative; transition: color 0.3s ease; } .main-nav ul li a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background-color: #E0B147; transition: width 0.3s ease; } .main-nav ul li a:hover::after, .main-nav ul li a.active::after { width: 100%; } .main-nav ul li a:hover, .main-nav ul li a.active { color: #E0B147; } .header-actions { display: flex; gap: 15px; } .btn { padding: 10px 20px; border-radius: 25px; text-decoration: none; font-weight: bold; text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); border: none; cursor: pointer; display: inline-block; white-space: nowrap; } .btn-register { background: linear-gradient(45deg, #E0B147, #FFD700); color: #1A2C42; } .btn-register:hover { background: linear-gradient(45deg, #FFD700, #E0B147); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); } .btn-login { background: linear-gradient(45deg, #4CAF50, #8BC34A); color: #fff; } .btn-login:hover { background: linear-gradient(45deg, #8BC34A, #4CAF50); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); } .btn-download { background: linear-gradient(45deg, #2196F3, #03A9F4); color: #fff; } .btn-download:hover { background: linear-gradient(45deg, #03A9F4, #2196F3); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); } .hamburger-menu { display: none; width: 30px; height: 25px; position: relative; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1002; } .hamburger-menu span { display: block; height: 3px; width: 100%; background-color: #E0B147; border-radius: 2px; position: absolute; left: 0; transition: all 0.3s ease; } .hamburger-menu span:nth-child(1) { top: 0; } .hamburger-menu span:nth-child(2) { top: 11px; } .hamburger-menu span:nth-child(3) { top: 22px; } .hamburger-menu.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); } .mobile-spacer { display: none; } .header-buttons.mobile-only { display: none; } /* Footer Styles */ .site-footer { background-color: #1A2C42; color: #f0f0f0; padding: 40px 20px; font-size: 0.9em; box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2); } .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 30px; } .footer-section { flex: 1; min-width: 250px; } .footer-logo { font-size: 2em; font-weight: bold; color: #E0B147; text-decoration: none; margin-bottom: 15px; display: inline-block; } .footer-section h3 { color: #E0B147; margin-bottom: 20px; font-size: 1.2em; } .footer-section p { margin-bottom: 10px; } .footer-section a { color: #f0f0f0; text-decoration: none; transition: color 0.3s ease; } .footer-section a:hover { color: #E0B147; } .footer-nav ul { list-style: none; } .footer-nav ul li { margin-bottom: 10px; } /* Responsive Styles */ @media (max-width: 768px) { body { padding-top: 130px; } .desktop-only { display: none; } .site-header { flex-direction: column; align-items: stretch; min-height: auto; } .header-top { padding-bottom: 10px; } .hamburger-menu { display: block; } .mobile-spacer { display: block; width: 30px; height: 25px; } .logo { flex: 1; text-align: center; font-size: 2em; } .header-buttons.mobile-only { display: flex; justify-content: center; gap: 10px; padding: 10px 20px; background-color: #1A2C42; /* Same as header background */ width: 100%; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); z-index: 1000; /* Below hamburger menu */ } .main-nav { display: none; position: absolute; top: 130px; /* Below both header-top and header-buttons */ left: 0; width: 100%; background-color: #1A2C42; /* Same as header background */ flex-direction: column; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); z-index: 1001; /* Above header buttons */ } .main-nav.active { display: flex; } .main-nav ul { flex-direction: column; align-items: center; padding: 20px 0; gap: 10px; } .main-nav ul li a { font-size: 1.2em; padding: 10px 20px; width: 100%; text-align: center; } .footer-container { flex-direction: column; align-items: center; text-align: center; } .footer-section { min-width: unset; width: 100%; margin-bottom: 20px; } .footer-section:last-child { margin-bottom: 0; } .footer-nav ul { padding-left: 0; } }