:root { --primary-color: #1A2E44; --secondary-color: #FFD700; --text-color-light: #f0f0f0; --text-color-dark: #333; } body { margin: 0; font-family: Arial, sans-serif; line-height: 1.6; color: var(--text-color-dark); } .site-header { background-color: var(--primary-color); color: var(--text-color-light); padding: 1rem 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } .header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem; } .site-header .logo { font-family: 'Georgia', serif; font-size: 2.2rem; font-weight: bold; color: var(--secondary-color); text-decoration: none; letter-spacing: 1px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); transition: color 0.3s ease; } .site-header .logo:hover { color: #FFEA70; } .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; } .main-nav a { color: var(--text-color-light); text-decoration: none; font-weight: bold; font-size: 1rem; padding: 0.5rem 0; position: relative; transition: color 0.3s ease; } .main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background-color: var(--secondary-color); transition: width 0.3s ease; } .main-nav a:hover::after, .main-nav a.active::after { width: 100%; } .main-nav a:hover, .main-nav a.active { color: var(--secondary-color); } .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: 1000; } .hamburger-menu .bar { width: 100%; height: 3px; background-color: var(--text-color-light); border-radius: 2px; transition: all 0.3s ease-in-out; } .site-footer { background-color: var(--primary-color); color: var(--text-color-light); padding: 3rem 0 1.5rem; font-size: 0.9rem; box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); } .footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; padding: 0 1.5rem; gap: 2rem; } .footer-col { flex: 1; min-width: 250px; } .footer-branding .footer-logo { font-family: 'Georgia', serif; font-size: 1.8rem; font-weight: bold; color: var(--secondary-color); text-decoration: none; letter-spacing: 0.5px; display: block; margin-bottom: 1rem; } .footer-branding .footer-description { color: rgba(255, 255, 255, 0.7); line-height: 1.8; } .site-footer h3 { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 1.2rem; position: relative; padding-bottom: 0.5rem; } .site-footer h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background-color: var(--secondary-color); } .footer-nav ul { list-style: none; margin: 0; padding: 0; } .footer-nav li { margin-bottom: 0.7rem; } .footer-nav a, .contact-info a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-nav a:hover, .contact-info a:hover { color: var(--secondary-color); } .contact-info p { margin-bottom: 0.7rem; color: rgba(255, 255, 255, 0.7); } .footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); } .footer-bottom .copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; } @media (max-width: 768px) { .header-container { padding: 0 1rem; } .hamburger-menu { display: flex; } .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--primary-color); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); z-index: 999; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .main-nav.active { display: flex; max-height: 300px; } .main-nav ul { flex-direction: column; width: 100%; padding: 1rem 0; } .main-nav li { text-align: center; width: 100%; } .main-nav a { display: block; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 1.1rem; } .main-nav li:last-child a { border-bottom: none; } .main-nav a::after { display: none; } .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); } .footer-container { flex-direction: column; align-items: center; text-align: center; } .footer-col { margin-bottom: 2rem; min-width: unset; width: 100%; } .footer-col:last-child { margin-bottom: 0; } .site-footer h3::after { left: 50%; transform: translateX(-50%); } .footer-nav ul { display: flex; flex-direction: column; align-items: center; } } @media (min-width: 769px) and (max-width: 1024px) { .header-container, .footer-container { padding: 0 1.5rem; } .main-nav ul { gap: 1rem; } .main-nav a { font-size: 0.95rem; } .footer-col { min-width: 200px; } }