/* Base Styles */
:root {
  --primary-color: #0A192F;
  --accent-color: #E0B400;
  --text-color: #f0f0f0;
  --dark-text-color: #333;
  --bg-dark: #1a1a1a;
  --bg-light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* Header Styles */
.site-header {
  background-color: var(--primary-color);
  padding: 15px 0;
  border-bottom: 3px solid var(--accent-color);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  color: var(--accent-color);
  font-size: 2.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.site-header .logo:hover {
  color: #fff;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.1em;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--accent-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(--accent-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 span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 40px 0 20px;
  margin-top: 50px;
  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-column {
  flex: 1;
  min-width: 250px;
}

.site-footer .footer-column h3 {
  color: var(--accent-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.site-footer .footer-column p {
  font-size: 0.95em;
  margin-bottom: 10px;
}

.site-footer .footer-nav ul li {
  margin-bottom: 8px;
}

.site-footer .footer-nav a {
  color: var(--text-color);
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.site-footer .footer-nav a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.site-footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 180, 0, 0.3);
}

.site-footer .copyright {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: nowrap;
    justify-content: center;
    position: relative;
  }

  .site-header .logo {
    margin-bottom: 0;
    width: auto;
    text-align: center;
    flex-grow: 1;
  }

  .main-nav {
    display: none;
    width: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 75px; /* Adjust based on header height */
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav li {
    margin: 15px 0;
  }

  .main-nav a {
    font-size: 1.2em;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .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);
  }

  .site-footer .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .site-footer .footer-column {
    text-align: center;
    min-width: unset;
    width: 100%;
  }
}