:root {
  --primary-color: #0A2239; /* Dark blue */
  --secondary-color: #FFD700; /* Gold */
  --text-color: #f0f0f0;
  --link-color: #FFD700;
  --link-hover-color: #fff;
  --bg-dark: #1a1a1a;
  --bg-light-dark: #2a2a2a;
}

body {
  margin: 0;
  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 15px;
}

/* 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-family: 'Georgia', serif; /* Creative font choice */
  font-size: 2.2em;
  font-weight: bold;
  color: var(--secondary-color);
  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;
  margin: 0;
  padding: 0;
  display: flex;
}

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

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

.main-nav .nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-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(--secondary-color);
}

.hamburger-menu {
  display: none; /* Hidden by default on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001; /* Above nav list when open */
}

.hamburger-menu .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.hamburger-menu .bar:last-child {
  margin-bottom: 0;
}

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

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

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

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

.site-footer p {
  font-size: 0.95em;
  line-height: 1.8;
}

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

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

.site-footer .social-links {
  margin-top: 15px;
}

.site-footer .social-links a {
  display: inline-block;
  margin-right: 10px;
}

.site-footer .social-links img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  border-radius: 50%;
  background-color: var(--bg-light-dark);
  padding: 5px;
  transition: transform 0.3s ease;
}

.site-footer .social-links img:hover {
  transform: translateY(-3px);
}

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

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

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

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

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

  .site-header .logo {
    font-size: 1.8em;
  }

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

  .main-nav .nav-list.active {
    display: flex; /* Show when active */
  }

  .main-nav .nav-list li {
    margin: 0;
    text-align: center;
    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;
    font-size: 1.1em;
  }

  .main-nav .nav-list a::after {
    display: none; /* No underline effect on mobile menu */
  }

  .hamburger-menu {
    display: block; /* Show hamburger menu on mobile */
  }

  /* Hamburger menu animation */
  .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);
  }

  .site-footer .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

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

  .site-footer h3 {
    text-align: center;
    width: fit-content;
    margin: 0 auto 15px auto;
  }

  .site-footer .social-links {
    text-align: center;
  }

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