/* Base Styles */
:root {
  --primary-color: #003366;
  --accent-color: #FFD700;
  --text-color: #333;
  --light-text-color: #f0f0f0;
  --bg-dark: #1a1a1a;
  --bg-light: #ffffff;
}

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* 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);
  position: relative;
  z-index: 1000;
}

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

.site-header .logo {
  font-family: 'Arial Black', sans-serif; /* Creative font choice */
  font-size: 2.5em; /* Larger size */
  font-weight: bold;
  color: var(--accent-color); /* Accent color for logo */
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.site-header .logo:hover {
  color: #fff; /* Slightly lighter on hover */
}

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

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

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

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

.main-nav a:hover {
  color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

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

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

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

.site-footer .container {
  display: flex;
  flex-direction: column;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: var(--accent-color);
  font-size: 1.2em;
  margin-bottom: 15px;
}

.footer-logo {
  font-family: 'Arial Black', sans-serif; /* Creative font choice */
  font-size: 2em;
  font-weight: bold;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

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

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 8px;
}

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

.footer-contact a:hover {
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: center; /* Center logo on smaller screens */
  }

  .site-header .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .main-nav {
    display: none; /* Hide main nav by default on mobile */
    width: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 100%; /* Position below header */
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0; /* For smooth slide effect */
    transition: max-height 0.3s ease-out;
  }

  .main-nav.active {
    display: block; /* Show when active */
    max-height: 300px; /* Adjust as needed for menu items */
  }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 20px;
  }

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

  .main-nav a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .hamburger-menu {
    display: block; /* Show hamburger on mobile */
    position: absolute;
    right: 20px;
    top: 25px; /* Adjust vertical position */
  }

  .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-content {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-nav ul {
    padding: 0;
  }
}

@media (min-width: 769px) {
  .site-header .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .site-header .logo {
    width: auto;
    text-align: left;
    margin-bottom: 0;
  }
  .main-nav {
    max-height: none; /* Remove max-height for desktop */
    position: static;
    box-shadow: none;
    display: block !important; /* Ensure nav is always visible on desktop */
  }
  .hamburger-menu {
    display: none; /* Hide hamburger on desktop */
  }
}