/* Basic reset so header spacing behaves */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color variables used by header/nav */
:root {
  --primary-dark: #0a1f1c;
  --primary-gold: #d4af37;
  --primary-cream: #f5f1e6;
  --accent-bronze: #cd7f32;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Logo image */
.logo-img {
  height: 75px;
  width: auto;
  transition: var(--transition);
}

/* Logo text (if you ever use it) */
.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Header (the fixed glass one you like) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px) saturate(180%);
  -webkit-backdrop-filter: blur(2px) saturate(180%);

  padding: 0 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);

  z-index: 1000;
  transition: padding 0.25s ease;
}

/* Desktop Navigation */
.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav a:hover {
  color: var(--primary-gold);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-bronze));
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Call-to-action link in nav */
.cta-nav {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
  color: var(--white) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 25px;
  font-weight: 600 !important;
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition);
}

.hamburger:hover span {
  background: var(--primary-gold);
}

/* Mobile Navigation (glass dropdown) */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

  padding: 0;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
  display: flex;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  max-height: 420px;
  padding: 1.2rem;
  overflow-y: auto;
}

.mobile-nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 0.75rem 0.8rem;
  margin: 0.25rem 0;
  border-radius: 8px;
  background: rgba(30, 70, 65, 0.95); /* solid green-ish */
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  font-size: 0.95rem;
  transform: translateX(-18px);
  opacity: 0;
}

.mobile-nav.active a {
  transform: translateX(0);
  opacity: 1;
}

/* Stagger animation */
.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active a:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav a:hover {
  color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(0) scale(1.02);
  padding-left: 2rem;
}

/* Responsive: show hamburger, hide desktop nav */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
