/* Base Styles */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-color: #333;
  --light-text-color: #f0f0f0;
  --background-color: #f8f8f8;
  --dark-background-color: #1a1a1a;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Header Styles */
.site-header {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.site-header .logo:hover {
  color: #fff;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

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

.main-nav a {
  color: var(--light-text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
  padding: 5px 0;
  position: relative;
}

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

.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(--light-text-color);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

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

/* Footer Styles */
.site-footer {
  background-color: var(--dark-background-color);
  color: var(--light-text-color);
  padding: 40px 0 20px;
  font-size: 0.95em;
}

.site-footer .footer-logo {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
}

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

.site-footer .footer-col {
  flex: 1;
  min-width: 280px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.site-footer .footer-col:last-child {
  margin-right: 0;
}

.site-footer h3 {
  color: var(--secondary-color);
  font-size: 1.3em;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  display: inline-block;
}

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

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

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

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

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

.site-footer .copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

  .site-header .logo {
    order: 1;
  }

  .hamburger-menu {
    display: flex;
    order: 2;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: var(--primary-color);
    position: absolute;
    top: 65px; /* Adjust based on header height */
    left: 0;
    right: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
  }

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

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

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

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

  .main-nav a {
    display: block;
    padding: 15px 0;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

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

  .site-footer .footer-col {
    margin-right: 0;
    margin-bottom: 30px;
  }

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