/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background-color: #1A2B4C; /* Primary color */
  padding: 15px 0;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700; /* Secondary color */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.logo:hover {
  color: #fff;
}
.main-nav .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.main-nav .nav-links li {
  margin-left: 30px;
}
.main-nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav .nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #FFD700; /* Secondary color */
  transition: width 0.3s ease;
}
.main-nav .nav-links a:hover::after,
.main-nav .nav-links a.active::after {
  width: 100%;
}
.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
  color: #FFD700;
}
.hamburger-menu {
  display: none; /* Hidden by default on desktop */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  z-index: 1001; /* Above mobile nav */
}
.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: #FFD700;
  transition: all 0.3s ease;
}
/* Hamburger menu animation */
.hamburger-menu.open .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger-menu.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.open .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Footer Styles */
.site-footer {
  background-color: #1A2B4C; /* Primary color */
  color: #fff;
  padding: 40px 0 20px;
  font-size: 0.9em;
}
.site-footer h3 {
  color: #FFD700; /* Secondary color */
  margin-bottom: 15px;
  font-size: 1.2em;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-col {
  flex: 1;
  min-width: 250px;
  margin-right: 30px;
}
.footer-col:last-child {
  margin-right: 0;
}
.footer-col p {
  margin-bottom: 10px;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #FFD700; /* Secondary color */
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .logo {
    order: 1;
  }
  .hamburger-menu {
    display: flex; /* Show hamburger on mobile */
    order: 2;
  }
  .main-nav {
    order: 3;
    width: 100%;
    display: none; /* Hide nav by default */
    flex-direction: column;
    background-color: #1A2B4C; /* Primary color */
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .main-nav.active {
    display: flex; /* Show nav when active */
  }
  .main-nav .nav-links {
    flex-direction: column;
    text-align: center;
    padding: 15px 0;
  }
  .main-nav .nav-links li {
    margin: 10px 0;
  }
  .main-nav .nav-links a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav .nav-links li:last-child a {
    border-bottom: none;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .footer-col:last-child {
    margin-bottom: 0;
  }
  .footer-nav ul {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.8em;
  }
  .site-header {
    padding: 10px 0;
  }
  .main-nav {
    top: 50px; /* Adjust for smaller header */
  }
}