:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey */
  --header-top-bg: var(--secondary-color);
  --main-nav-bg: #2C2C2C; /* Slightly lighter dark grey for contrast */
  --text-color-light: #F0F0F0;
  --text-color-dark: #333;
  --button-primary-bg: var(--primary-color);
  --button-primary-text: var(--secondary-color);
  --button-secondary-bg: #444;
  --button-secondary-text: var(--text-color-light);
  --button-tertiary-bg: #007bff; /* Example, can be customized */
  --button-tertiary-text: var(--text-color-light);
  --header-height-desktop: 110px; /* header-top + main-nav */
  --header-height-mobile: 110px; /* header-top + mobile-buttons-area */
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: #f4f4f4;
  padding-top: var(--header-height-desktop);
}

body.no-scroll {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height-desktop);
  background-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.header-top {
  background-color: var(--header-top-bg);
  width: 100%;
  padding: 10px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 2.2em;
  font-weight: bold;
  display: block;
  padding: 5px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text {
  /* Creative styling for logo text */
  font-family: 'Impact', 'Arial Black', sans-serif; /* Example font */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: #FFC107; /* Slightly lighter gold */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border: 1px solid #666;
}

.btn-secondary:hover {
  background-color: #666;
  border-color: #888;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-tertiary {
  background-color: var(--button-tertiary-bg);
  color: var(--button-tertiary-text);
  border: 1px solid #0056b3;
}

.btn-tertiary:hover {
  background-color: #0056b3;
  border-color: #004085;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.main-nav {
  background-color: var(--main-nav-bg);
  width: 100%;
  padding: 10px 0;
  display: flex; /* Desktop default */
  flex-direction: row; /* Desktop default */
  justify-content: center;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.nav-link {
  color: var(--text-color-light);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(255, 215, 0, 0.1);
}

.hamburger-menu {
  display: none; /* Hidden on desktop */
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
  margin-right: auto; /* Push hamburger to left on mobile */
}

.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  margin: 6px 0;
  transition: 0.4s;
}

.mobile-buttons-area {
  display: none; /* Hidden on desktop */
  background-color: var(--header-top-bg);
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999; /* Below hamburger menu, above main content */
}

.mobile-buttons-area .header-container {
  justify-content: center;
  gap: 10px;
}

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

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

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

.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

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

.footer-column p,
.footer-column ul {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a:hover {
  color: var(--primary-color);
}

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

.footer-bottom p {
  margin: 0;
  color: #888;
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    padding-top: var(--header-height-mobile);
  }

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

  .header-top {
    padding: 10px 0;
  }

  .header-container {
    width: 100%;
    max-width: none; /* Crucial for mobile full width */
    padding: 0 15px;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.8em;
    flex-grow: 1; /* Allow logo to take available space */
    text-align: center;
    order: 2; /* Center logo */
  }

  .hamburger-menu {
    display: block;
    order: 1; /* Place hamburger on the left */
  }

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

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

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

  .desktop-nav-buttons {
    display: none; /* Hide desktop buttons */
  }

  .mobile-buttons-area {
    display: block; /* Show mobile buttons */
  }

  .mobile-buttons-area .header-container {
    padding: 0 15px;
  }

  .mobile-buttons-area .btn {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 12px;
    font-size: 0.9em;
  }

  .main-nav {
    display: none; /* Hidden by default on mobile */
    position: fixed;
    top: var(--header-height-mobile); /* Position below fixed header */
    left: 0;
    width: 80%; /* Menu width */
    height: calc(100% - var(--header-height-mobile));
    background-color: var(--main-nav-bg);
    flex-direction: column; /* Vertical menu */
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 0;
    transform: translateX(-100%); /* Slide out to the left */
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

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

  .nav-container {
    width: 100%;
    max-width: none; /* Crucial for mobile full width */
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 15px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 15px;
    font-size: 1.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

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

  .site-footer .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-column {
    min-width: unset;
    width: 100%;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.2em;
  }

  .footer-column ul {
    padding: 0;
  }

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