:root {
  --primary-bg-color: #0A192F;
  --secondary-color: #FFD700;
  --text-color: #FFFFFF;
  --link-color: #FFFFFF;
  --link-hover-color: #FFD700;
  --font-family: 'Arial', sans-serif;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: #1a1a1a; /* A slightly darker background for contrast */
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

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

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

.logo:hover {
  color: #fff;
}

.main-nav .nav-list {
  display: flex;
  gap: 25px;
}

.main-nav .nav-link {
  font-size: 1.1em;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav .nav-link::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-link:hover::after,
.main-nav .nav-link.current-page::after {
  width: 100%;
}

.main-nav .nav-link.current-page {
  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: 1001;
}

.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary-bg-color);
  color: var(--text-color);
  padding: 40px 0 20px;
  margin-top: 50px;
}

.site-footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.site-footer p,
.site-footer .nav-link {
  font-size: 0.95em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

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

.site-footer .nav-list li:last-child a {
  margin-bottom: 0;
}

.site-footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
}

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

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

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

  .main-nav.active {
    display: flex;
    position: fixed; /* Fix menu to viewport when active */
    height: calc(100vh - 60px); /* Adjust height */
    overflow-y: auto;
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .main-nav .nav-link {
    padding: 10px 0;
    width: fit-content;
  }

  .hamburger-menu {
    display: flex;
  }

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

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

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

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

  .site-footer .footer-col h3 {
    margin-top: 20px;
  }

  .site-footer .nav-list {
    padding: 0;
  }
}
