:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-color: #E0E0E0;
  --link-hover-color: #FFF;
}

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

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

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

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

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

.site-header .logo {
  color: var(--primary-color);
  font-size: 2.2em;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.site-header .logo:hover {
  color: var(--link-hover-color);
}

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

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

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

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

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

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
  color: var(--primary-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(--primary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Footer Styles */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 40px 0;
  border-top: 3px solid var(--primary-color);
  font-size: 0.9em;
}

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

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

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav .nav-list li {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

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

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

  .main-nav .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .main-nav .nav-list li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav .nav-list li:last-child {
    border-bottom: none;
  }

  .main-nav .nav-list a {
    display: block;
    padding: 15px 0;
    text-align: center;
    font-size: 1.2em;
  }
  
  .main-nav .nav-list a::after {
    bottom: 0;
    height: 1px;
  }

  .hamburger-menu {
    display: flex;
  }

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

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

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

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

  .footer-column {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-column:last-child {
    margin-bottom: 0;
  }

  .footer-nav .nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-nav .nav-list li {
    margin-bottom: 0;
  }

  .footer-nav .nav-list a {
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .site-header .logo {
    font-size: 1.8em;
  }

  .site-header .container {
    padding: 0 15px;
  }

  .main-nav {
    top: 70px; /* Adjust for smaller header */
  }

  .site-footer .container {
    padding: 0 15px;
  }

  .footer-nav .nav-list a {
    font-size: 0.8em;
  }
}