/* Global Styles */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-light: #f4f4f4;
  --text-dark: #333;
  --bg-dark: #1a1a1a;
}

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

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

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

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

a:hover {
  text-decoration: underline;
}

/* Header Styles */
.site-header {
  background-color: var(--primary-color);
  padding: 1rem 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-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.site-header .main-nav .nav-list {
  list-style: none;
  display: flex;
}

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

.site-header .main-nav .nav-list a {
  color: var(--text-light);
  font-size: 1.1rem;
  padding: 5px 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header .main-nav .nav-list a:hover,
.site-header .main-nav .nav-list a.active {
  color: var(--secondary-color);
  text-shadow: 0 0 5px var(--secondary-color);
  text-decoration: none;
}

.hamburger {
  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 .bar {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 0;
  margin-top: 40px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.site-footer h3 {
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.site-footer .footer-column p {
  margin-bottom: 0.8rem;
}

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

.site-footer .footer-nav li {
  margin-bottom: 0.7rem;
}

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

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

.site-footer .footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

  .site-header .main-nav {
    width: 100%;
    order: 3; /* Push nav below logo */
  }

  .hamburger {
    display: flex;
  }

  .site-header .main-nav .nav-list {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: var(--primary-color);
    position: absolute;
    top: 70px; /* Adjust based on header height */
    left: 0;
    padding: 15px 20px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .site-header .main-nav.active .nav-list {
    display: flex;
  }

  .site-header .main-nav .nav-list li {
    margin: 10px 0;
    text-align: center;
  }

  .site-header .main-nav .nav-list a {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .footer-column h3 {
    margin-top: 1.5rem;
  }

  .site-footer .footer-nav ul {
    padding-left: 0;
  }
}