/* Base styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  margin: 0;
  padding-top: 110px; /* Placeholder, adjusted by JS for dynamic header height */
  scroll-behavior: smooth;
}

.no-scroll {
  overflow: hidden;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.btn-secondary:hover {
  background-color: #0d1016;
  border-color: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header - Desktop First */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-height: 110px; /* Approximate height, adjusted by JS */
}

.header-top {
  background-color: #1A202C; /* Dark background for top bar */
  padding: 10px 0;
}

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

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  display: block; /* Ensure it's visible */
}

.desktop-nav-buttons {
  display: flex;
  gap: 10px;
}

.main-nav {
  background-color: #FFD700; /* Gold background for main nav */
  padding: 10px 0;
  display: flex; /* Desktop default: visible */
  width: 100%;
}

.main-nav .nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #1A202C;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #555;
}

.hamburger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1003; /* Above overlay */
}

.hamburger-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FFD700;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

.mobile-nav-buttons-wrapper {
  display: none; /* Hidden on desktop */
}

.mobile-menu-overlay {
  display: none; /* Hidden on desktop */
}

/* Footer */
.site-footer {
  background-color: #1A202C;
  color: #ccc;
  padding: 40px 0 20px;
  font-size: 0.9em;
}

.site-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.site-footer h3 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.2em;
}

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

.site-footer li a {
  color: #ccc;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.site-footer li a:hover {
  color: #FFD700;
}

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

.footer-contact a {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.85em;
}

/* Mobile styles */
@media (max-width: 768px) {
  body {
    padding-top: 110px; /* Fallback, adjusted by JS */
  }

  .site-header {
    min-height: auto;
  }

  .header-top .header-container,
  .main-nav .nav-container,
  .mobile-nav-buttons-wrapper .header-container {
    width: 100%;
    max-width: none; /* Crucial for mobile container width */
    padding: 0 15px;
  }

  .header-top .header-container {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .hamburger-menu {
    display: block;
    order: 1;
    margin-right: auto;
  }

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

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

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

  .logo {
    order: 2;
    flex-grow: 1;
    text-align: center;
    font-size: 1.8em;
    padding: 0;
  }

  .desktop-nav-buttons {
    display: none;
  }

  .main-nav {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #1A202C;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1002;
    padding-top: 80px; /* Space for hamburger button/logo at top */
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
  }

  .main-nav.active {
    display: flex; /* Show menu when active */
    transform: translateX(0); /* Slide in */
  }

  .main-nav .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 20px;
  }

  .nav-link {
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

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

  .mobile-nav-buttons-wrapper {
    display: block; /* Visible on mobile */
    width: 100%;
    background-color: #1A202C;
    padding: 10px 0;
    z-index: 1001; /* Below menu, above content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed; /* Fixed below header-top */
    top: 60px; /* Assuming header-top is around 60px */
  }

  .mobile-nav-buttons-wrapper .mobile-buttons-container {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001; /* Below menu, above content */
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .site-footer .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }
  
  .footer-section h3 {
    text-align: center;
  }

  .footer-section ul {
    text-align: center;
  }

  .footer-contact p {
    text-align: center;
  }
}
