/* Base Styles */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-color: #f0f0f0;
  --link-color: #FFD700;
  --hover-color: #fff;
  --bg-dark: #1a1a1a;
  --bg-light-dark: #2a2a2a;
}

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

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

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

a:hover {
  color: var(--hover-color);
}

/* Header Styles */
.site-header {
  background-color: var(--primary-color);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.site-header .logo {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(45deg, var(--secondary-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.site-header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

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

.site-header .main-nav a {
  color: var(--text-color);
  font-weight: 600;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.site-header .main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
  width: 100%;
}

.site-header .main-nav a:hover,
.site-header .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(--secondary-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;
  border-top: 1px solid var(--bg-light-dark);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.site-footer .footer-column {
  flex: 1;
  min-width: 250px;
}

.site-footer h3 {
  color: var(--secondary-color);
  font-size: 1.2em;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.site-footer p {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.site-footer .footer-nav a:hover {
  color: var(--secondary-color);
}

.site-footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-light-dark);
  text-align: center;
}

.site-footer .footer-bottom p {
  margin: 0;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .site-header .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .site-header .main-nav.active {
    display: flex;
    transform: translateY(0);
  }

  .site-header .main-nav ul {
    flex-direction: column;
    text-align: center;
  }

  .site-header .main-nav li {
    margin: 10px 0;
  }

  .hamburger-menu {
    display: flex;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

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

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

  .site-footer .footer-nav ul {
    text-align: center;
  }
}
