:root { --primary-color: #0A1931; --accent-color: #FFD700; --text-color: #ffffff; --text-light-color: #cccccc; --bg-dark: #071223; } body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; box-sizing: border-box; background-color: #f4f4f4; color: var(--text-color); line-height: 1.6; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } a { text-decoration: none; color: var(--accent-color); } a:hover { color: #ffd700cc; } ul { list-style: none; padding: 0; margin: 0; } .site-header { background-color: var(--primary-color); padding: 15px 0; border-bottom: 3px solid var(--accent-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); position: sticky; top: 0; z-index: 1000; } .site-header .container { display: flex; justify-content: space-between; align-items: center; } .site-header .logo { font-size: 2.5em; font-weight: bold; color: var(--accent-color); text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); } .site-header .logo:hover { color: #ffd700cc; } .main-nav ul { display: flex; gap: 25px; } .main-nav a { color: var(--text-color); font-weight: 600; font-size: 1.05em; padding: 5px 0; position: relative; transition: color 0.3s ease; } .main-nav a:hover { color: var(--accent-color); } .main-nav a.active::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 3px; background-color: var(--accent-color); border-radius: 2px; } .hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001; } .hamburger-menu span { display: block; width: 100%; height: 3px; background-color: var(--accent-color); border-radius: 3px; transition: all 0.3s ease-in-out; } .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .site-footer { background-color: var(--bg-dark); color: var(--text-light-color); padding: 40px 0 20px; font-size: 0.9em; border-top: 3px solid var(--accent-color); } .site-footer .footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; } .site-footer .footer-col { flex: 1; min-width: 250px; } .site-footer .footer-col h3 { color: var(--accent-color); font-size: 1.3em; margin-bottom: 15px; border-bottom: 1px solid rgba(255, 215, 0, 0.3); padding-bottom: 8px; } .site-footer .footer-col p { margin-bottom: 10px; } .site-footer .footer-col a { color: var(--text-light-color); transition: color 0.3s ease; } .site-footer .footer-col a:hover { color: var(--accent-color); } .site-footer .footer-nav ul { display: flex; flex-direction: column; gap: 8px; } .site-footer .social-links { margin-top: 15px; display: flex; gap: 15px; } .site-footer .social-links a { color: var(--text-color); font-size: 1.4em; width: 35px; height: 35px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.1); display: flex; justify-content: center; align-items: center; transition: background-color 0.3s ease, color 0.3s ease; } .site-footer .social-links a:hover { background-color: var(--accent-color); color: var(--primary-color); } .site-footer .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-light-color); } @media (max-width: 768px) { .site-header .container { flex-wrap: wrap; } .site-header .logo { flex-grow: 1; text-align: left; font-size: 2em; } .hamburger-menu { display: flex; } .main-nav { display: none; width: 100%; background-color: var(--primary-color); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5); position: absolute; top: 70px; left: 0; padding: 15px 0; z-index: 999; text-align: center; } .main-nav.active { display: block; } .main-nav ul { flex-direction: column; gap: 0; } .main-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .main-nav li:last-child { border-bottom: none; } .main-nav a { display: block; padding: 15px 20px; font-size: 1.1em; color: var(--text-color); } .main-nav a.active { color: var(--accent-color); background-color: rgba(255, 215, 0, 0.1); border-left: 4px solid var(--accent-color); padding-left: 16px; } .main-nav a.active::after { display: none; } .site-footer .footer-columns { flex-direction: column; text-align: center; } .site-footer .footer-col { min-width: unset; width: 100%; } .site-footer .footer-nav ul { align-items: center; } .site-footer .social-links { justify-content: center; } }