/* ============================================
   HIRSCH CREEK GOLF & WINTER CLUB
   Northern Lodge Modern Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors */
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
  
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  
  --emerald-400: #34d399;
  --emerald-900: #064e3b;
  
  --blue-400: #60a5fa;
  --blue-900: #1e3a8a;
  
  --purple-400: #c084fc;
  --purple-900: #581c87;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4a574 0%, #c9956c 50%, #b8845c 100%);
  --gradient-forest: linear-gradient(180deg, rgba(26, 46, 37, 0.9) 0%, rgba(15, 23, 18, 0.95) 100%);
  
  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1280px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ============================================
   Dark Mode Variables (Default)
   ============================================ */
[data-theme="dark"],
:root {
  --bg-primary: var(--stone-950);
  --bg-secondary: var(--stone-900);
  --bg-tertiary: var(--stone-800);
  --bg-card: var(--stone-900);
  --bg-overlay: rgba(12, 10, 9, 0.9);
  
  --text-primary: var(--stone-100);
  --text-secondary: var(--stone-300);
  --text-tertiary: var(--stone-400);
  --text-inverse: var(--stone-900);
  
  --border-color: var(--stone-700);
  --border-light: var(--stone-800);
  
  --nav-bg: rgba(12, 10, 9, 0.95);
  --nav-text: var(--stone-100);
  --nav-border: var(--stone-800);
  
  --card-bg: var(--stone-900);
  --card-border: var(--stone-700);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  
  --footer-bg: var(--stone-900);
  --footer-text: var(--stone-400);
}

/* ============================================
   Light Mode Variables (Override)
   ============================================ */
[data-theme="light"] {
  --bg-primary: var(--stone-50);
  --bg-secondary: var(--stone-100);
  --bg-tertiary: var(--stone-200);
  --bg-card: #ffffff;
  --bg-overlay: rgba(255, 255, 255, 0.9);
  
  --text-primary: var(--stone-900);
  --text-secondary: var(--stone-700);
  --text-tertiary: var(--stone-500);
  --text-inverse: var(--stone-50);
  
  --border-color: var(--stone-300);
  --border-light: var(--stone-200);
  
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-text: var(--stone-900);
  --nav-border: var(--stone-200);
  
  --card-bg: #ffffff;
  --card-border: var(--stone-200);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  
  --footer-bg: var(--stone-100);
  --footer-text: var(--stone-700);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-base), color var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   Typography
   ============================================ */
.font-display {
  font-family: var(--font-display);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #e5c9a8 0%, #d4a574 50%, #c9956c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding) 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--stone-900);
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(41, 37, 36, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stone-600);
  color: white;
}

.btn-secondary:hover {
  background: rgba(68, 64, 60, 0.5);
  border-color: var(--stone-500);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--stone-500);
  color: white;
}

.btn-outline:hover {
  background: var(--stone-800);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow);
  border-bottom: 1px solid var(--nav-border);
}

/* Hide nav when scrolling down */
.nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Show nav when scrolling up or at top */
.nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  background: transparent;
}

.nav-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

/* Keep these for backwards compatibility if needed */
.nav-logo-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.nav-logo-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--stone-900);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.nav-logo-subtitle {
  font-size: 0.7rem;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: var(--stone-300);
  letter-spacing: 0.025em;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--amber-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-400);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-login {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-login:hover {
  color: var(--text-primary);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  color: var(--amber-500);
  border-color: var(--amber-500);
}

.theme-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-fast);
}

.theme-toggle:hover svg {
  transform: rotate(15deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

/* Default to showing sun icon (for switching to light mode) when no data-theme is set */
:root:not([data-theme]) .theme-toggle .icon-sun,
html:not([data-theme]) .theme-toggle .icon-sun {
  display: block;
}

/* Mobile theme toggle */
.theme-toggle-mobile {
  display: flex;
  margin-left: auto;
  margin-right: 1rem;
}

@media (min-width: 1024px) {
  .theme-toggle-mobile {
    display: none;
  }
}

/* Mobile Menu */
.nav-mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--text-primary);
}

@media (min-width: 1024px) {
  .nav-mobile-toggle {
    display: none;
  }
}

.nav-mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--stone-800);
  margin-top: 1rem;
}

.nav-mobile.active {
  display: block;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile-link {
  color: var(--stone-300);
  padding: 0.5rem 0;
}

.nav-mobile-link:hover {
  color: var(--amber-400);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(12, 10, 9, 0.6) 0%,
    rgba(12, 10, 9, 0.4) 50%,
    rgba(12, 10, 9, 1) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(41, 37, 36, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stone-700);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 0.875rem;
  color: var(--stone-300);
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--stone-300);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  position: relative;
  margin-top: -3rem;
  z-index: 20;
  padding-bottom: 2rem;
}

.stats-container {
  background: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--stone-700);
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .stats-bar {
    margin-top: -4rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem 3rem;
    gap: 2rem;
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--stone-300);
  font-weight: 500;
}

.stat-sublabel {
  color: var(--stone-500);
  font-size: 0.875rem;
}

/* ============================================
   Offerings Section
   ============================================ */
.offerings {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  color: var(--stone-400);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.offering-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.offering-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--stone-700);
  color: var(--stone-400);
  font-weight: 500;
  transition: all var(--transition-base);
}

.offering-tab:hover {
  border-color: var(--stone-600);
  color: var(--stone-300);
}

.offering-tab.active {
  background: linear-gradient(135deg, #2d4a3e 0%, #1a2e25 100%);
  border-color: var(--amber-600);
  color: white;
}

.offering-content {
  display: none;
}

.offering-content.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .offering-content.active {
    grid-template-columns: 1fr 1fr;
  }
}

.offering-text h3 {
  margin-bottom: 1.5rem;
}

.offering-description {
  color: var(--stone-400);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.offering-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.offering-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--stone-300);
}

.offering-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--amber-500);
  flex-shrink: 0;
}

.offering-image {
  position: relative;
}

.offering-image img {
  border-radius: 1rem;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.offering-image-frame {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(217, 119, 6, 0.3);
  border-radius: 1rem;
  z-index: -1;
}

/* ============================================
   Events Section
   ============================================ */
.events {
  padding: 6rem 0;
  background: var(--gradient-forest);
  position: relative;
}

.events-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .events-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.events-link {
  color: var(--amber-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.events-link:hover {
  color: var(--amber-300);
}

.events-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.event-card {
  background: rgba(28, 25, 23, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--stone-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.event-card:hover {
  border-color: rgba(217, 119, 6, 0.5);
  transform: translateY(-4px);
}

.event-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.event-date {
  background: var(--amber-600);
  color: var(--stone-900);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.event-type {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.event-type.golf {
  background: rgba(6, 78, 59, 0.5);
  color: var(--emerald-400);
}

.event-type.curling {
  background: rgba(30, 58, 138, 0.5);
  color: var(--blue-400);
}

.event-type.social {
  background: rgba(88, 28, 135, 0.5);
  color: var(--purple-400);
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.event-card:hover .event-title {
  color: var(--amber-400);
}

.event-spots {
  color: var(--stone-500);
  font-size: 0.875rem;
}

/* ============================================
   Membership CTA Section
   ============================================ */
.membership-cta {
  padding: 6rem 0;
}

.membership-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 500px;
}

.membership-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membership-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(12, 10, 9, 0.95) 0%,
    rgba(12, 10, 9, 0.8) 50%,
    transparent 100%
  );
}

.membership-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 500px;
  padding: 3rem;
}

.membership-text {
  max-width: 32rem;
}

.membership-badge {
  display: inline-block;
  background: var(--amber-600);
  color: var(--stone-900);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.membership-title {
  margin-bottom: 1.5rem;
}

.membership-description {
  color: var(--stone-300);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.membership-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .membership-buttons {
    flex-direction: row;
  }
}

/* ============================================
   Location Section
   ============================================ */
.location {
  padding: 6rem 0;
  background: rgba(28, 25, 23, 0.5);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-map {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--stone-800);
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.location-info h2 {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--stone-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--amber-500);
}

.contact-label {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--stone-400);
}

.contact-value a {
  color: var(--amber-400);
  transition: text-decoration var(--transition-fast);
}

.contact-value a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone-800);
}

.social-links h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--stone-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-icon:hover {
  background: var(--amber-600);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--stone-950);
  border-top: 1px solid var(--stone-800);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--stone-500);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer-logo {
  display: inline-block;
  background: transparent;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-300);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--stone-500);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--amber-400);
}

.footer-bottom {
  border-top: 1px solid var(--stone-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: var(--stone-600);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--stone-600);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--stone-400);
}

/* ============================================
   Page Headers (Interior Pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 12rem 0 4rem;
  background: var(--stone-900);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(12, 10, 9, 0.7) 0%,
    rgba(12, 10, 9, 0.95) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 10;
}

.page-header-title {
  margin-bottom: 1rem;
}

.page-header-description {
  color: var(--stone-300);
  font-size: 1.25rem;
  max-width: 42rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--stone-900);
  border: 1px solid var(--stone-800);
  border-radius: 1rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--stone-700);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--stone-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   Pricing Tables
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--stone-900);
  border: 1px solid var(--stone-800);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--amber-600);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-600);
  color: var(--stone-900);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--stone-500);
}

.pricing-description {
  color: var(--stone-400);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stone-800);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--stone-300);
  font-size: 0.875rem;
}

.pricing-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--emerald-400);
  flex-shrink: 0;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--stone-900);
  border: 1px solid var(--stone-700);
  border-radius: 0.5rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--amber-500);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none; }
}

/* ============================================
   Sponsor Banner
   ============================================ */
.sponsor-banner {
  background: linear-gradient(90deg, var(--stone-900) 0%, var(--stone-800) 50%, var(--stone-900) 100%);
  border-bottom: 1px solid var(--stone-700);
  padding: 0.75rem 0;
  overflow: hidden;
}

.sponsor-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sponsor-banner-label {
  font-size: 0.75rem;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.sponsor-banner-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.sponsor-banner-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--stone-300);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.sponsor-banner-logo:hover {
  color: var(--stone-100);
}

.sponsor-banner-logo svg {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.7;
}

.sponsor-banner-divider {
  width: 1px;
  height: 1rem;
  background: var(--stone-600);
}

@media (max-width: 767px) {
  .sponsor-banner {
    padding: 0.5rem 0;
  }
  
  .sponsor-banner-inner {
    gap: 0.5rem;
  }
  
  .sponsor-banner-logos {
    gap: 1rem;
  }
  
  .sponsor-banner-logo {
    font-size: 0.75rem;
  }
  
  .sponsor-banner-divider {
    display: none;
  }
}

/* ============================================
   Sponsor Logos Grid
   ============================================ */
.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.sponsor-logos-title {
  gap: 4rem;
}

.sponsor-logos-premier {
  gap: 3rem;
}

.sponsor-logos-community {
  gap: 2rem;
}

.sponsor-logo-link {
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.sponsor-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.sponsor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(--stone-800);
  border: 1px solid var(--stone-700);
  border-radius: 0.75rem;
  min-width: 160px;
  min-height: 80px;
  text-align: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.sponsor-logo:hover {
  border-color: var(--stone-600);
  background: var(--stone-750, #3a3633);
}

.sponsor-logos-title .sponsor-logo {
  min-width: 200px;
  min-height: 100px;
  padding: 2rem 2.5rem;
}

.sponsor-logos-premier .sponsor-logo {
  min-width: 180px;
  min-height: 90px;
}

@media (max-width: 767px) {
  .sponsor-logos {
    gap: 1rem;
  }
  
  .sponsor-logos-title,
  .sponsor-logos-premier {
    gap: 1.5rem;
  }
  
  .sponsor-logo {
    min-width: 140px;
    min-height: 70px;
    padding: 1rem 1.5rem;
  }
  
  .sponsor-logos-title .sponsor-logo {
    min-width: 160px;
    min-height: 80px;
    padding: 1.25rem 1.5rem;
  }
}

/* ============================================
   Site Credit Footer
   ============================================ */
.site-credit {
  background: var(--stone-950);
  border-top: 1px solid var(--stone-800);
  padding: 1rem 0;
  text-align: center;
}

.site-credit p {
  font-size: 0.75rem;
  color: var(--stone-500);
}

.site-credit a {
  color: var(--stone-400);
  transition: color var(--transition-fast);
}

.site-credit a:hover {
  color: var(--amber-400);
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-300);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--stone-800);
  border: 1px solid var(--stone-700);
  border-radius: 0.5rem;
  color: var(--stone-100);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone-500);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2378716c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   Contact Info Items
   ============================================ */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-gold);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--stone-900);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--stone-200);
  line-height: 1.5;
}

.contact-value a {
  color: var(--amber-400);
  transition: color var(--transition-fast);
}

.contact-value a:hover {
  color: var(--amber-500);
}

/* ============================================
   Social Links
   ============================================ */
.social-links h3 {
  font-size: 0.875rem;
  color: var(--stone-400);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--stone-800);
  border: 1px solid var(--stone-700);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.social-icon:hover {
  background: var(--stone-700);
  border-color: var(--stone-600);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--stone-300);
}

/* ============================================
   Page Header (Interior Pages)
   ============================================ */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 3rem;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.7) 0%, rgba(12, 10, 9, 0.9) 100%);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header-description {
  font-size: 1.125rem;
  color: var(--stone-300);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Mobile Navigation Overlay
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #1a2e25 0%, #0f1712 50%, #0c0a09 100%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  max-width: 100%;
  overflow-y: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-100);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-nav-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 5rem;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--stone-300);
  border-radius: 0.75rem;
  transition: all var(--transition-fast);
  position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--stone-100);
  background: linear-gradient(90deg, rgba(212, 165, 116, 0.15) 0%, transparent 100%);
}

.mobile-nav-link.active {
  color: #d4a574;
}

.mobile-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--gradient-gold);
  border-radius: 0 4px 4px 0;
}

.mobile-nav-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.mobile-nav-login {
  display: block;
  text-align: center;
  color: var(--stone-400);
  font-size: 0.875rem;
  padding: 0.75rem;
  transition: color var(--transition-fast);
}

.mobile-nav-login:hover {
  color: var(--stone-200);
}

/* Hide overlay on desktop */
@media (min-width: 1024px) {
  .mobile-nav-overlay {
    display: none;
  }
}

/* ============================================
   Sponsor Section (Above Events)
   ============================================ */
.sponsor-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--stone-900) 0%, rgba(28, 25, 23, 0.5) 100%);
  border-top: 1px solid var(--stone-800);
  border-bottom: 1px solid var(--stone-800);
}

.sponsor-section-inner {
  text-align: center;
}

.sponsor-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.sponsor-section-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.sponsor-section-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.5rem;
  background: var(--stone-800);
  border: 1px solid var(--stone-700);
  border-radius: 0.75rem;
  min-width: 180px;
  min-height: 80px;
  transition: all var(--transition-fast);
}

.sponsor-section-logo img {
  max-height: 50px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.85);
  transition: filter var(--transition-fast);
}

.sponsor-section-logo:hover img {
  filter: brightness(0) invert(1);
}

[data-theme="light"] .sponsor-section-logo img {
  filter: brightness(0) saturate(1);
}

[data-theme="light"] .sponsor-section-logo:hover img {
  filter: brightness(0.15) saturate(1);
}

[data-theme="light"] .sponsor-section {
  background: linear-gradient(180deg, var(--stone-100) 0%, var(--stone-200) 100%);
  border-top-color: var(--stone-200);
  border-bottom-color: var(--stone-200);
}

[data-theme="light"] .sponsor-section-title {
  color: var(--stone-600);
}

[data-theme="light"] .sponsor-section-logo {
  background: white;
  border-color: var(--stone-200);
}

[data-theme="light"] .sponsor-section-logo:hover {
  background: var(--stone-50);
  border-color: var(--amber-500);
}

[data-theme="light"] .sponsor-name {
  color: var(--stone-700);
}

.sponsor-section-logo:hover {
  background: var(--stone-700);
  border-color: var(--stone-600);
  transform: translateY(-2px);
}

.sponsor-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-200);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .sponsor-section {
    padding: 3rem 0;
  }
  
  .sponsor-section-logos {
    gap: 1rem;
  }
  
  .sponsor-section-logo {
    padding: 1rem 1.5rem;
    min-width: 140px;
    min-height: 60px;
  }
  
  .sponsor-section-logo img {
    max-height: 40px;
    max-width: 120px;
  }
  
  .sponsor-name {
    font-size: 0.875rem;
  }
}

/* ============================================
   Footer Copyright Link
   ============================================ */
.footer-copyright a {
  color: var(--stone-400);
  transition: color var(--transition-fast);
}

.footer-copyright a:hover {
  color: var(--amber-400);
}

/* ============================================
   Mobile Optimizations
   ============================================ */
@media (max-width: 767px) {
  /* Navigation */
  .nav-actions {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--stone-800);
    border: 1px solid var(--stone-700);
    border-radius: 0.5rem;
    color: var(--stone-100);
  }
  
  .nav-mobile-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  /* Hero */
  .hero {
    min-height: 85vh;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  /* Events */
  .events-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  /* Offering tabs */
  .offering-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .offering-tab {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .nav-actions {
    display: none;
  }
}

/* Desktop nav - hide toggle */
@media (min-width: 1024px) {
  .nav-mobile-toggle {
    display: none;
  }
  
  .nav-links {
    display: flex;
  }
  
  .nav-actions {
    display: flex;
  }
}

/* ============================================
   Light Mode Overrides
   ============================================ */
[data-theme="light"] {
  /* Navigation */
  .nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--stone-200);
  }
  
  .nav-link {
    color: var(--stone-700);
  }
  
  .nav-link:hover {
    color: var(--stone-900);
  }
  
  .nav-logo-title,
  .nav-logo-subtitle {
    color: var(--stone-900);
  }
  
  .nav-mobile-toggle {
    color: var(--stone-900);
  }
  
  /* Hero Section */
  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(250, 250, 249, 0.95) 100%);
  }
  
  .hero-title,
  .hero-subtitle {
    color: var(--stone-900);
  }
  
  .hero-description {
    color: var(--stone-600);
  }
  
  /* Section backgrounds */
  .section {
    background-color: var(--bg-primary);
  }
  
  .section-dark {
    background-color: var(--stone-100);
  }
  
  /* Cards */
  .card,
  .feature-card,
  .info-card,
  .pricing-card,
  .membership-card,
  .event-card,
  .testimonial-card {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: var(--card-shadow);
  }
  
  .card:hover,
  .feature-card:hover,
  .pricing-card:hover,
  .membership-card:hover {
    border-color: var(--amber-500);
  }
  
  /* Text colors */
  h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
  }
  
  p {
    color: var(--text-secondary);
  }
  
  .text-muted,
  .text-secondary {
    color: var(--text-tertiary);
  }
  
  /* Feature cards */
  .feature-icon {
    background: var(--stone-100);
    color: var(--amber-600);
  }
  
  .feature-title {
    color: var(--stone-900);
  }
  
  .feature-description {
    color: var(--stone-600);
  }
  
  /* Stats */
  .stat-number {
    color: var(--stone-900);
  }
  
  .stat-label {
    color: var(--stone-500);
  }
  
  /* Footer */
  .footer {
    background: var(--stone-100);
    border-top-color: var(--stone-200);
  }
  
  .footer-title {
    color: var(--stone-900);
  }
  
  .footer-link {
    color: var(--stone-600);
  }
  
  .footer-link:hover {
    color: var(--amber-600);
  }
  
  .footer-bottom {
    border-top-color: var(--stone-200);
    color: var(--stone-500);
  }
  
  /* Site credit */
  .site-credit {
    background: var(--stone-100);
    border-top-color: var(--stone-200);
  }
  
  .site-credit a {
    color: var(--stone-500);
  }
  
  .site-credit a:hover {
    color: var(--amber-600);
  }
  
  /* Sponsor banner */
  .sponsor-banner {
    background: linear-gradient(180deg, var(--stone-100) 0%, var(--stone-200) 100%);
    border-bottom-color: var(--stone-300);
  }
  
  .sponsor-banner span {
    color: var(--stone-500);
  }
  
  .sponsor-banner-logo {
    color: var(--stone-700);
  }
  
  .sponsor-banner-logo:hover {
    color: var(--amber-600);
  }
  
  /* Mobile nav */
  .mobile-nav-overlay {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .mobile-nav-close {
    color: var(--stone-700);
  }
  
  .mobile-nav-link {
    color: var(--stone-700);
    border-bottom-color: var(--stone-200);
  }
  
  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: var(--amber-600);
  }
  
  .mobile-nav-login {
    color: var(--stone-600);
  }
  
  /* Forms */
  .form-input,
  .form-select,
  .form-textarea {
    background: white;
    border-color: var(--stone-300);
    color: var(--stone-900);
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  }
  
  .form-input::placeholder,
  .form-textarea::placeholder {
    color: var(--stone-400);
  }
  
  /* Contact items */
  .contact-icon {
    background: var(--stone-100);
    color: var(--amber-600);
  }
  
  .contact-item h4 {
    color: var(--stone-900);
  }
  
  .contact-item p,
  .contact-item a {
    color: var(--stone-600);
  }
  
  /* Page header */
  .page-header::after {
    background: linear-gradient(180deg, rgba(250, 250, 249, 0) 0%, rgba(250, 250, 249, 1) 100%);
  }
  
  .page-header h1 {
    color: var(--stone-900);
  }
  
  .page-header p {
    color: var(--stone-600);
  }
  
  /* Pricing cards */
  .pricing-amount {
    color: var(--stone-900);
  }
  
  .pricing-period {
    color: var(--stone-500);
  }
  
  .pricing-features li {
    color: var(--stone-600);
  }
  
  /* Location section */
  .location {
    background: var(--stone-100);
  }
  
  .location-map {
    background: var(--stone-200);
  }
  
  .location-info h2 {
    color: var(--stone-900);
  }
  
  .contact-label {
    color: var(--stone-900);
  }
  
  .contact-value {
    color: var(--stone-600);
  }
  
  .contact-value a {
    color: var(--amber-600);
  }
  
  .contact-value a:hover {
    color: var(--amber-700);
  }
  
  /* Sponsor logos */
  .sponsor-logo {
    background: white;
    border-color: var(--stone-200);
  }
  
  .sponsor-logo:hover {
    border-color: var(--amber-500);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Legal pages */
  .legal-content h2,
  .legal-content h3 {
    color: var(--stone-900);
  }
  
  .legal-content p,
  .legal-content li {
    color: var(--stone-600);
  }
  
  /* Blockquotes */
  blockquote {
    border-left-color: var(--amber-500);
    background: var(--stone-100);
    color: var(--stone-700);
  }
  
  /* Tables */
  table {
    background: white;
  }
  
  th {
    background: var(--stone-100);
    color: var(--stone-900);
  }
  
  td {
    border-color: var(--stone-200);
    color: var(--stone-700);
  }
  
  /* Buttons - keep primary consistent */
  .btn-secondary {
    background: var(--stone-200);
    color: var(--stone-900);
  }
  
  .btn-secondary:hover {
    background: var(--stone-300);
  }
  
  .btn-outline {
    border-color: var(--stone-300);
    color: var(--stone-700);
  }
  
  .btn-outline:hover {
    background: var(--stone-100);
    border-color: var(--stone-400);
  }
  
  /* Course features grid */
  .course-feature {
    background: white;
    border-color: var(--stone-200);
  }
  
  .course-feature-icon {
    background: var(--stone-100);
    color: var(--amber-600);
  }
  
  .course-feature h4 {
    color: var(--stone-900);
  }
  
  .course-feature p {
    color: var(--stone-600);
  }
  
  /* Menu items */
  .menu-item {
    background: white;
    border-color: var(--stone-200);
  }
  
  .menu-item-name {
    color: var(--stone-900);
  }
  
  .menu-item-description {
    color: var(--stone-600);
  }
  
  .menu-item-price {
    color: var(--amber-600);
  }
  
  /* About page */
  .timeline-item {
    background: white;
    border-color: var(--stone-200);
  }
  
  .timeline-year {
    background: var(--stone-100);
    color: var(--amber-600);
  }
  
  .timeline-content h3 {
    color: var(--stone-900);
  }
  
  .timeline-content p {
    color: var(--stone-600);
  }
  
  /* Testimonials */
  .testimonial-card {
    background: white;
  }
  
  .testimonial-text {
    color: var(--stone-700);
  }
  
  .testimonial-author {
    color: var(--stone-900);
  }
  
  .testimonial-role {
    color: var(--stone-500);
  }
  
  /* CTA sections */
  .cta-section {
    background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
  }
  
  .cta-title {
    color: var(--stone-900);
  }
  
  .cta-description {
    color: var(--stone-600);
  }
}

/* Theme transition for smooth switching */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   Pro Shop Styles
   ============================================ */
.page-header-shop {
  background: linear-gradient(135deg, rgba(12, 10, 9, 0.9) 0%, rgba(26, 25, 23, 0.85) 100%),
              linear-gradient(180deg, var(--stone-800) 0%, var(--stone-900) 100%);
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6rem;
}

/* Shop Categories */
.shop-categories {
  padding: 4rem 0;
}

.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1023px) {
  .shop-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .shop-categories-grid {
    grid-template-columns: 1fr;
  }
}

.shop-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  text-align: center;
  transition: all var(--transition-base);
}

.shop-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-500);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.15);
}

.shop-category-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.shop-category-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--stone-900);
}

.shop-category-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.shop-category-card p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1279px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-500);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
  color: var(--stone-900);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  z-index: 10;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--stone-800) 0%, var(--stone-900) 100%);
}

.product-image-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--stone-600);
}

[data-theme="light"] .product-image-placeholder {
  background: linear-gradient(135deg, var(--stone-200) 0%, var(--stone-300) 100%);
}

[data-theme="light"] .product-image-placeholder svg {
  color: var(--stone-400);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.product-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber-500);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-description {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Shop Section */
.shop-section {
  padding: 5rem 0;
}

.shop-featured {
  padding: 5rem 0;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--stone-900) 0%, var(--stone-950) 100%);
  text-align: center;
}

[data-theme="light"] .cta-section {
  background: linear-gradient(180deg, var(--stone-100) 0%, var(--stone-200) 100%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section dark background */
.section-dark {
  background: var(--bg-secondary);
}

[data-theme="light"] .section-dark {
  background: var(--stone-100);
}

/* Sponsor Logo Images */
.sponsor-logo img {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.9);
  transition: filter var(--transition-fast);
}

.sponsor-logo-link:hover .sponsor-logo img {
  filter: brightness(0) invert(1);
}

[data-theme="light"] .sponsor-logo img {
  filter: brightness(0) saturate(1);
}

[data-theme="light"] .sponsor-logo-link:hover .sponsor-logo img {
  filter: brightness(0.15) saturate(1);
}

.sponsor-logo-fallback {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sponsor-logos-title .sponsor-logo img {
  max-height: 70px;
  max-width: 200px;
}

.sponsor-logos-premier .sponsor-logo img {
  max-height: 55px;
  max-width: 160px;
}

.sponsor-logos-community .sponsor-logo img {
  max-height: 45px;
  max-width: 140px;
}

/* ============================================
   COMPREHENSIVE LIGHT THEME OVERRIDES
   ============================================ */

[data-theme="light"] .page-header {
  background: linear-gradient(180deg, var(--stone-100) 0%, var(--stone-200) 100%);
}

[data-theme="light"] .page-header-overlay {
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.6) 0%, rgba(12, 10, 9, 0.8) 100%);
}

[data-theme="light"] .page-header-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .page-header-description {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Pro Shop page header has light background - use dark text */
[data-theme="light"] .page-header-shop p {
  color: var(--stone-600) !important;
  text-shadow: none !important;
}

[data-theme="light"] .page-header-shop h1 {
  color: var(--stone-800) !important;
  text-shadow: none !important;
}

[data-theme="light"] .page-header-shop {
  background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 50%, var(--stone-100) 100%);
}

[data-theme="light"] .page-header-shop::before {
  background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
}

/* Main sections and content areas */
[data-theme="light"] .section,
[data-theme="light"] .content-section,
[data-theme="light"] .features-section,
[data-theme="light"] .pricing-section,
[data-theme="light"] .info-section,
[data-theme="light"] .menu-section,
[data-theme="light"] .events-section,
[data-theme="light"] .contact-section,
[data-theme="light"] .membership-section,
[data-theme="light"] .about-section {
  background: var(--stone-50);
}

[data-theme="light"] .section:nth-child(even),
[data-theme="light"] .section-alt {
  background: var(--stone-100);
}

/* Stats and testimonial sections */
[data-theme="light"] .stats-section,
[data-theme="light"] .testimonials-section {
  background: var(--stone-100);
}

[data-theme="light"] .stat-item {
  background: white;
  border: 1px solid var(--stone-200);
}

[data-theme="light"] .stat-number {
  color: var(--amber-600);
}

[data-theme="light"] .stat-label {
  color: var(--stone-600);
}

/* Cards and grid items */
[data-theme="light"] .info-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .membership-card,
[data-theme="light"] .event-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .menu-card,
[data-theme="light"] .product-card {
  background: white;
  border: 1px solid var(--stone-200);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .card-title,
[data-theme="light"] .feature-title,
[data-theme="light"] .pricing-title,
[data-theme="light"] .membership-title,
[data-theme="light"] .product-title {
  color: var(--stone-900);
}

[data-theme="light"] .card-description,
[data-theme="light"] .feature-description,
[data-theme="light"] .pricing-description,
[data-theme="light"] .product-description {
  color: var(--stone-600);
}

/* Pricing specific */
[data-theme="light"] .pricing-price,
[data-theme="light"] .membership-price {
  color: var(--stone-900);
}

[data-theme="light"] .pricing-period {
  color: var(--stone-500);
}

[data-theme="light"] .pricing-feature {
  color: var(--stone-700);
}

[data-theme="light"] .pricing-card.featured,
[data-theme="light"] .membership-card.featured {
  background: linear-gradient(180deg, white 0%, var(--stone-50) 100%);
  border-color: var(--amber-400);
}

/* Menu items */
[data-theme="light"] .menu-item {
  background: white;
  border: 1px solid var(--stone-200);
}

[data-theme="light"] .menu-item-name {
  color: var(--stone-900);
}

[data-theme="light"] .menu-item-description {
  color: var(--stone-600);
}

[data-theme="light"] .menu-item-price {
  color: var(--amber-600);
}

[data-theme="light"] .menu-category-title {
  color: var(--stone-900);
}

/* Contact form */
[data-theme="light"] .contact-form {
  background: white;
  border: 1px solid var(--stone-200);
}

[data-theme="light"] .contact-info {
  background: var(--stone-100);
}

[data-theme="light"] .contact-info-title {
  color: var(--stone-900);
}

[data-theme="light"] .contact-info-item {
  color: var(--stone-700);
}

[data-theme="light"] .contact-icon {
  background: var(--stone-200);
}

[data-theme="light"] .contact-label {
  color: var(--stone-800);
}

[data-theme="light"] .contact-value {
  color: var(--stone-600);
}

[data-theme="light"] .contact-value a {
  color: var(--amber-600);
}

[data-theme="light"] .contact-value strong {
  color: var(--stone-700);
}

/* Map section */
[data-theme="light"] .map-section {
  background: var(--stone-100);
}

/* Footer */
[data-theme="light"] .footer {
  background: var(--stone-200);
  border-top: 1px solid var(--stone-300);
}

[data-theme="light"] .footer-title {
  color: var(--stone-900);
}

[data-theme="light"] .footer-link {
  color: var(--stone-600);
}

[data-theme="light"] .footer-link:hover {
  color: var(--amber-600);
}

[data-theme="light"] .footer-bottom {
  background: var(--stone-200);
  border-top: 1px solid var(--stone-300);
}

[data-theme="light"] .footer-copyright {
  color: var(--stone-700);
}

[data-theme="light"] .footer-copyright a {
  color: var(--amber-600);
}

[data-theme="light"] .footer-copyright a:hover {
  color: var(--amber-700);
}

[data-theme="light"] .footer-legal a {
  color: var(--stone-700);
}

[data-theme="light"] .footer-legal a:hover {
  color: var(--amber-600);
}

[data-theme="light"] .site-credit {
  background: var(--stone-200);
}

/* Sponsor sections */
[data-theme="light"] .sponsor-banner {
  background: linear-gradient(180deg, var(--stone-100) 0%, var(--stone-200) 100%);
}

[data-theme="light"] .sponsors-section {
  background: var(--stone-100);
}

/* Shop/product sections */
[data-theme="light"] .shop-section,
[data-theme="light"] .products-section {
  background: var(--stone-50);
}

[data-theme="light"] .product-image-placeholder {
  background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
}

/* Info grid */
[data-theme="light"] .info-grid-section {
  background: var(--stone-50);
}

/* Hours and schedule */
[data-theme="light"] .hours-section,
[data-theme="light"] .schedule-section {
  background: var(--stone-100);
}

[data-theme="light"] .hours-card,
[data-theme="light"] .schedule-card {
  background: white;
  border: 1px solid var(--stone-200);
}

/* Feature icons */
[data-theme="light"] .feature-icon {
  background: var(--stone-100);
  color: var(--amber-600);
}

/* Badges and tags */
[data-theme="light"] .badge,
[data-theme="light"] .tag {
  background: var(--stone-200);
  color: var(--stone-700);
}

[data-theme="light"] .badge-primary,
[data-theme="light"] .tag-primary {
  background: var(--amber-100);
  color: var(--amber-800);
}

/* Dividers and borders */
[data-theme="light"] hr,
[data-theme="light"] .divider {
  border-color: var(--stone-200);
}

/* Ensure main content area is light */
[data-theme="light"] main {
  background: var(--stone-50);
}

/* Golf page specific */
[data-theme="light"] .golf-section,
[data-theme="light"] .course-info,
[data-theme="light"] .rates-section {
  background: var(--stone-50);
}

/* Curling page specific */
[data-theme="light"] .curling-section,
[data-theme="light"] .leagues-section {
  background: var(--stone-50);
}

/* Events page specific */
[data-theme="light"] .events-grid {
  background: var(--stone-50);
}

[data-theme="light"] .event-card {
  background: white;
}

/* About page specific */
[data-theme="light"] .team-section,
[data-theme="light"] .history-section {
  background: var(--stone-50);
}

/* Restaurant page specific */
[data-theme="light"] .restaurant-section,
[data-theme="light"] .menu-grid {
  background: var(--stone-50);
}

/* Ensure all text is readable in light mode */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] .section-title,
[data-theme="light"] .section-subtitle {
  color: var(--stone-900);
}

[data-theme="light"] p,
[data-theme="light"] .section-description {
  color: var(--stone-700);
}

[data-theme="light"] .offering-feature {
  color: var(--stone-700);
}

[data-theme="light"] .offering-description {
  color: var(--stone-600);
}

[data-theme="light"] .text-muted {
  color: var(--stone-500);
}

/* Mobile navigation */
[data-theme="light"] .mobile-nav-overlay {
  background: linear-gradient(135deg, var(--stone-50) 0%, var(--stone-100) 50%, white 100%);
}

[data-theme="light"] .mobile-nav-link {
  color: var(--stone-800);
  border-bottom-color: var(--stone-200);
}

[data-theme="light"] .mobile-nav-link:hover,
[data-theme="light"] .mobile-nav-link.active {
  color: var(--amber-600);
}

[data-theme="light"] .mobile-nav-close {
  color: var(--stone-700);
}

/* Sponsor section */
[data-theme="light"] .sponsor-section {
  background: linear-gradient(180deg, var(--stone-100) 0%, var(--stone-50) 100%);
  border-top-color: var(--stone-200);
  border-bottom-color: var(--stone-200);
}

[data-theme="light"] .sponsor-section-title {
  color: var(--stone-900);
}

/* Form inputs */
[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .form-select {
  background: white;
  border-color: var(--stone-300);
  color: var(--stone-900);
}

[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
  color: var(--stone-400);
}

[data-theme="light"] .form-label {
  color: var(--stone-700);
}

/* Card base class */
[data-theme="light"] .card {
  background: white;
  border-color: var(--stone-200);
}

/* Hero section - text stays light over dark image overlay */
[data-theme="light"] .hero-title {
  color: white;
}

[data-theme="light"] .hero-description {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .hero-badge {
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

/* Navigation bar - transparent at top, white on scroll intent in light mode */
[data-theme="light"] .nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

/* Show white background when scrolled AND visible (scroll intent) */
[data-theme="light"] .nav.scrolled.nav-visible {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stone-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Also show white when just scrolled (for backwards compatibility) */
[data-theme="light"] .nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--stone-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Nav links - light at top (over dark hero), dark when scrolled */
[data-theme="light"] .nav-link {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .nav-link:hover {
  color: var(--amber-400);
}

/* Shop page has light header - nav needs dark text at top */
[data-theme="light"] .page-shop .nav-link {
  color: var(--stone-700);
  text-shadow: none;
}

[data-theme="light"] .page-shop .nav-link:hover,
[data-theme="light"] .page-shop .nav-link.active {
  color: var(--amber-600);
}

[data-theme="light"] .page-shop .nav-login {
  color: var(--stone-600);
}

[data-theme="light"] .page-shop .nav-login:hover {
  color: var(--amber-600);
}

[data-theme="light"] .page-shop .theme-toggle {
  background: var(--stone-200);
  color: var(--stone-600);
}

[data-theme="light"] .nav.scrolled .nav-link {
  color: var(--stone-700);
  text-shadow: none;
}

[data-theme="light"] .nav.scrolled .nav-link:hover {
  color: var(--amber-600);
}

/* Accordion items */
[data-theme="light"] .accordion-item {
  background: white;
  border-color: var(--stone-200);
}

[data-theme="light"] .accordion-header {
  color: var(--stone-900);
}

[data-theme="light"] .accordion-content {
  color: var(--stone-700);
}

/* Tab navigation */
[data-theme="light"] .tab-nav {
  background: var(--stone-100);
}

[data-theme="light"] .tab-button {
  color: var(--stone-600);
}

[data-theme="light"] .tab-button.active {
  background: white;
  color: var(--stone-900);
}

/* Info boxes */
[data-theme="light"] .info-box {
  background: var(--stone-100);
  border-color: var(--stone-200);
}

[data-theme="light"] .info-box-title {
  color: var(--stone-900);
}

/* Tables */
[data-theme="light"] table {
  background: white;
}

[data-theme="light"] th {
  background: var(--stone-100);
  color: var(--stone-900);
}

[data-theme="light"] td {
  color: var(--stone-700);
  border-color: var(--stone-200);
}

[data-theme="light"] tr:nth-child(even) {
  background: var(--stone-50);
}

/* Lists with icons */
[data-theme="light"] .icon-list-item {
  color: var(--stone-700);
}

[data-theme="light"] .icon-list-icon {
  color: var(--amber-600);
}

/* Announcement/status badges */
[data-theme="light"] .status-badge {
  background: var(--stone-100);
  border-color: var(--stone-200);
}

/* Quote/testimonial styling */
[data-theme="light"] .quote-text {
  color: var(--stone-800);
}

[data-theme="light"] .quote-author {
  color: var(--stone-600);
}

/* Ensure images have proper containers */
[data-theme="light"] .image-container {
  background: var(--stone-100);
}

/* ============================================
   LIGHT MODE FIXES FOR DARK SECTIONS
   Sections with dark backgrounds/overlays should
   keep their light text even in light mode
   ============================================ */

/* Page headers always have dark overlays - keep text white */
[data-theme="light"] .page-header-title,
[data-theme="light"] .page-header-title span:not(.text-gradient-gold) {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .page-header-title .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .page-header-description {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Page header overlay should still darken the image in light mode */
[data-theme="light"] .page-header-overlay {
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.7) 0%, rgba(12, 10, 9, 0.9) 100%);
}

/* Sections with inline dark backgrounds - keep text light */
[data-theme="light"] section[style*="rgba(28, 25, 23"] .section-title,
[data-theme="light"] section[style*="rgba(28, 25, 23"] .section-description,
[data-theme="light"] section[style*="rgba(28, 25, 23"] h2,
[data-theme="light"] section[style*="rgba(28, 25, 23"] p {
  color: white;
}

[data-theme="light"] section[style*="rgba(28, 25, 23"] .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing cards in dark sections - keep dark backgrounds */
[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-card {
  background: var(--stone-900);
  border-color: var(--stone-700);
}

[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-name,
[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-price,
[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-description,
[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-feature {
  color: white;
}

[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-price span {
  color: var(--stone-400);
}

[data-theme="light"] section[style*="rgba(28, 25, 23"] .pricing-card.featured {
  background: linear-gradient(180deg, var(--stone-800) 0%, var(--stone-900) 100%);
  border-color: var(--amber-500);
}

/* Location section with dark background */
[data-theme="light"] .location {
  background: rgba(28, 25, 23, 0.5);
}

[data-theme="light"] .location h2,
[data-theme="light"] .location p,
[data-theme="light"] .location-info h2,
[data-theme="light"] .location-info p {
  color: white;
}

[data-theme="light"] .location .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .contact-item-icon {
  color: var(--amber-500);
}

[data-theme="light"] .contact-item-text strong,
[data-theme="light"] .contact-item-text a {
  color: white;
}

[data-theme="light"] .contact-item-text span {
  color: var(--stone-400);
}

/* Map section padding adjustments */
.location-map {
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Footer map specific */
.footer-map,
.map-wrapper {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {
  /* Page header mobile fixes */
  .page-header {
    padding: 8rem 0 3rem;
  }
  
  .page-header-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .page-header-description {
    font-size: 1rem;
  }
  
  /* Pricing cards mobile */
  .pricing-grid {
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  /* Location section mobile */
  .location {
    padding: 4rem 0;
  }
  
  .location-grid {
    gap: 2rem;
  }
  
  .location-map {
    min-height: 300px;
  }
  
  .location-map iframe {
    min-height: 300px;
  }
  
  /* Section headers mobile */
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  /* Hero section mobile */
  .hero {
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  /* Cards mobile */
  .card,
  .feature-card,
  .info-card {
    padding: 1.5rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 7rem 0 2.5rem;
  }
  
  .page-header-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .pricing-card {
    padding: 1.25rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   NAVIGATION FIXES FOR LIGHT MODE
   Transparent at top, white on scroll
   ============================================ */

/* Already defined earlier - these are overrides for specificity */
[data-theme="light"] .nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

[data-theme="light"] .nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stone-200);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Nav links - white at top (over dark hero), dark when scrolled */
[data-theme="light"] .nav-link {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: var(--amber-400);
}

/* When scrolled in light mode - dark text on white background */
[data-theme="light"] .nav.scrolled .nav-link {
  color: var(--stone-700);
  text-shadow: none;
}

[data-theme="light"] .nav.scrolled .nav-link:hover,
[data-theme="light"] .nav.scrolled .nav-link.active {
  color: var(--amber-600);
}

/* Nav login link - light at top, dark when scrolled */
[data-theme="light"] .nav-login {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .nav-login:hover {
  color: var(--amber-400);
}

[data-theme="light"] .nav.scrolled .nav-login {
  color: var(--stone-600);
  text-shadow: none;
}

[data-theme="light"] .nav.scrolled .nav-login:hover {
  color: var(--amber-600);
}

[data-theme="light"] .nav-cta {
  background: var(--stone-900);
  color: white;
}

[data-theme="light"] .nav-cta:hover {
  background: var(--stone-800);
}

/* Theme toggle button - transparent at top, visible when scrolled */
[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .nav.scrolled .theme-toggle {
  background: var(--stone-200);
  color: var(--stone-700);
  border-color: var(--stone-300);
}

[data-theme="light"] .nav.scrolled .theme-toggle:hover {
  background: var(--stone-300);
  color: var(--stone-900);
  border-color: var(--amber-500);
}

/* Member login link - light at top, dark when scrolled */
[data-theme="light"] .member-login {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .member-login:hover {
  color: var(--amber-400);
}

[data-theme="light"] .nav.scrolled .member-login {
  color: var(--stone-600);
  text-shadow: none;
}

[data-theme="light"] .nav.scrolled .member-login:hover {
  color: var(--amber-600);
}

/* ============================================
   ALWAYS DARK SECTIONS
   These sections stay dark even in light mode
   ============================================ */

.section-dark-always {
  background: linear-gradient(180deg, var(--stone-900) 0%, var(--stone-950) 100%);
}

.section-dark-always .section-title,
.section-dark-always .section-description,
.section-dark-always h2,
.section-dark-always h3,
.section-dark-always p {
  color: white;
}

.section-dark-always .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark-always .pricing-card {
  background: var(--stone-900);
  border: 1px solid var(--stone-700);
}

.section-dark-always .pricing-card.featured {
  background: linear-gradient(180deg, var(--stone-800) 0%, var(--stone-900) 100%);
  border-color: var(--amber-500);
}

.section-dark-always .pricing-name,
.section-dark-always .pricing-price,
.section-dark-always .pricing-description,
.section-dark-always .pricing-feature,
.section-dark-always .pricing-feature span {
  color: white;
}

.section-dark-always .pricing-price span {
  color: var(--stone-400);
}

/* Light mode - override the general light mode rules */
[data-theme="light"] .section-dark-always {
  background: linear-gradient(180deg, var(--stone-900) 0%, var(--stone-950) 100%);
}

[data-theme="light"] .section-dark-always .section-title,
[data-theme="light"] .section-dark-always .section-description,
[data-theme="light"] .section-dark-always h2,
[data-theme="light"] .section-dark-always h3,
[data-theme="light"] .section-dark-always p {
  color: white;
}

[data-theme="light"] .section-dark-always .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

[data-theme="light"] .section-dark-always .pricing-card {
  background: var(--stone-900);
  border-color: var(--stone-700);
}

[data-theme="light"] .section-dark-always .pricing-card.featured {
  background: linear-gradient(180deg, var(--stone-800) 0%, var(--stone-900) 100%);
  border-color: var(--amber-500);
}

[data-theme="light"] .section-dark-always .pricing-name,
[data-theme="light"] .section-dark-always .pricing-price,
[data-theme="light"] .section-dark-always .pricing-description,
[data-theme="light"] .section-dark-always .pricing-feature,
[data-theme="light"] .section-dark-always .pricing-feature span {
  color: white;
}

[data-theme="light"] .section-dark-always .pricing-price span {
  color: var(--stone-400);
}

/* Stats container - always dark */
.stats-container {
  background: var(--stone-900);
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.stats-container .stat-value,
.stats-container .stat-label {
  color: white;
}

[data-theme="light"] .stats-container {
  background: var(--stone-900);
}

[data-theme="light"] .stats-container .stat-value,
[data-theme="light"] .stats-container .stat-label {
  color: white;
}

[data-theme="light"] .section-dark-always .stats-container {
  background: var(--stone-800);
}

/* Membership CTA card - always has dark overlay so text stays white */
.membership-cta .membership-title,
.membership-cta .membership-description,
.membership-cta h2,
.membership-cta p {
  color: white;
}

[data-theme="light"] .membership-cta .membership-title,
[data-theme="light"] .membership-cta .membership-description,
[data-theme="light"] .membership-cta h2 {
  color: white;
}

[data-theme="light"] .membership-cta .membership-description {
  color: var(--stone-300);
}

[data-theme="light"] .membership-cta .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .membership-overlay {
  background: linear-gradient(to right, 
    rgba(12, 10, 9, 0.95) 0%,
    rgba(12, 10, 9, 0.8) 50%,
    transparent 100%
  );
}

/* ============================================
   EVENT CARDS IN DARK SECTIONS - Light Mode
   Keep cards white with dark text inside dark sections
   ============================================ */

[data-theme="light"] .section-dark-always .event-card {
  background: white;
  border: 1px solid var(--stone-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .section-dark-always .event-title {
  color: var(--stone-900);
  font-weight: 700;
}

[data-theme="light"] .section-dark-always .event-spots,
[data-theme="light"] .section-dark-always .event-card p {
  color: var(--stone-600);
}

[data-theme="light"] .section-dark-always .events-grid {
  background: transparent;
}

/* Enhanced gold title for first event card */
[data-theme="light"] .section-dark-always .event-card:first-child .event-title {
  color: var(--amber-600);
}

/* Gradient forest background sections */
[data-theme="light"] section[style*="gradient-forest"] {
  background: var(--gradient-forest);
}

[data-theme="light"] section[style*="gradient-forest"] .section-title,
[data-theme="light"] section[style*="gradient-forest"] .section-description {
  color: white;
}

[data-theme="light"] section[style*="gradient-forest"] .text-gradient-gold {
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 50%, var(--amber-400) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* ============================================
   PRODUCT CARDS IN DARK SECTIONS - Light Mode
   ============================================ */

[data-theme="light"] .section-dark-always .product-card {
  background: white;
  border: 1px solid var(--stone-200);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .section-dark-always .product-name,
[data-theme="light"] .section-dark-always .product-title {
  color: var(--stone-900);
}

[data-theme="light"] .section-dark-always .product-description,
[data-theme="light"] .section-dark-always .product-category {
  color: var(--stone-600);
}

[data-theme="light"] .section-dark-always .product-price {
  color: var(--stone-900);
}

[data-theme="light"] .section-dark-always .products-grid {
  background: transparent;
}

[data-theme="light"] .section-dark-always .product-image-placeholder {
  background: var(--stone-100);
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Small - 480px and below */
@media (max-width: 480px) {
  /* Base typography */
  html {
    font-size: 14px;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Navigation */
  .nav {
    padding: 0.75rem 1rem;
  }
  
  .nav-logo img {
    height: 52px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    gap: 0.5rem;
  }
  
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .nav-login {
    display: none;
  }
  
  /* Hero section */
  .hero {
    min-height: 85vh;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  /* Page headers */
  .page-header {
    padding: 7rem 0 2rem;
    min-height: 30vh;
  }
  
  .page-header-title {
    font-size: 1.75rem;
  }
  
  .page-header-description {
    font-size: 0.9375rem;
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-description {
    font-size: 0.9375rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Cards */
  .card {
    padding: 1.25rem;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .benefits-grid,
  .pricing-grid,
  .menu-grid,
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Contact section */
  .location-grid {
    gap: 2rem;
  }
  
  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .contact-label {
    font-size: 0.875rem;
  }
  
  .contact-value {
    font-size: 0.875rem;
  }
  
  /* Forms */
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .form-label {
    font-size: 0.8125rem;
  }
  
  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-img {
    height: 100px;
  }
  
  .footer-column h4 {
    margin-bottom: 0.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  /* Pricing cards */
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-amount {
    font-size: 2rem;
  }
  
  /* Menu items */
  .menu-item {
    padding: 1rem;
  }
  
  .menu-price {
    font-size: 1rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Sponsorship */
  .sponsor-tier {
    padding: 1.25rem;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Shop categories */
  .shop-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Medium - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  /* Navigation */
  .nav-links {
    display: none;
  }
  
  .nav-login {
    display: none;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 80%;
    max-width: 280px;
  }
  
  /* Page headers */
  .page-header {
    padding: 8rem 0 2.5rem;
    min-height: 32vh;
  }
  
  .page-header-title {
    font-size: 2rem;
  }
  
  /* Sections */
  .section {
    padding: 3.5rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-column:first-child {
    grid-column: span 2;
    text-align: center;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Shop */
  .shop-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Navigation */
  .nav-links {
    gap: 1.25rem;
  }
  
  .nav-link {
    font-size: 0.8125rem;
  }
  
  /* Hero */
  .hero-title {
    font-size: 3rem;
  }
  
  /* Page headers */
  .page-header {
    padding: 9rem 0 3rem;
  }
  
  .page-header-title {
    font-size: 2.5rem;
  }
  
  /* Sections */
  .section {
    padding: 4rem 0;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Location/Contact */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-column:first-child {
    grid-column: span 4;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  /* Shop */
  .shop-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile hamburger menu icon */
@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    color: currentColor;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--stone-900);
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--stone-800);
    font-size: 1rem;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--stone-400);
  }
  
  .mobile-menu-close svg {
    width: 24px;
    height: 24px;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  [data-theme="light"] .nav-links {
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }
  
  [data-theme="light"] .nav-links .nav-link {
    color: var(--stone-700);
    border-bottom-color: var(--stone-200);
  }
  
  [data-theme="light"] .nav-links .nav-link:hover,
  [data-theme="light"] .nav-links .nav-link.active {
    color: var(--amber-600);
  }
}

/* Ensure desktop menu shows properly */
@media (min-width: 1024px) {
  .mobile-menu-toggle,
  .mobile-menu-close,
  .mobile-menu-overlay {
    display: none !important;
  }
  
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    overflow: visible;
  }
}

/* Touch-friendly tap targets */
@media (max-width: 1023px) {
  .btn,
  .nav-link,
  .footer-link a,
  .contact-value a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  .footer-links {
    gap: 0.25rem;
  }
  
  .footer-link a {
    padding: 0.5rem 0;
  }
}

/* Improve readability on mobile */
@media (max-width: 767px) {
  body {
    line-height: 1.7;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Better spacing for lists */
  ul, ol {
    padding-left: 1.25rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }
  
  /* Cards stretch full width */
  .card,
  .feature-card,
  .pricing-card,
  .service-card {
    width: 100%;
  }
  
  /* CTA sections */
  .cta-section {
    padding: 3rem 1.5rem;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  /* Membership CTA */
  .membership-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .membership-content {
    padding: 0;
  }
}

/* Landscape phone adjustments */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .page-header {
    min-height: auto;
    padding: 6rem 0 2rem;
  }
}

/* High DPI / Retina display adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .nav-logo img,
  .footer-logo-img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Mobile menu toggle button base styles */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: white;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

[data-theme="light"] .mobile-menu-toggle {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .page-shop .mobile-menu-toggle {
  color: var(--stone-700);
  text-shadow: none;
}

[data-theme="light"] .nav.scrolled .mobile-menu-toggle {
  color: var(--stone-700);
  text-shadow: none;
}

@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Contact section improvements */
@media (max-width: 1023px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-grid > div:first-child {
    order: 1;
  }
  
  .location-grid > div:last-child {
    order: 2;
  }
}

/* Contact page form container */
.contact-form {
  background: var(--stone-800);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--stone-700);
}

[data-theme="light"] .contact-form {
  background: white;
  border-color: var(--stone-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Contact info container */
.contact-items {
  background: var(--stone-800);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--stone-700);
}

[data-theme="light"] .contact-items {
  background: white;
  border-color: var(--stone-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Social links in contact */
.social-links-contact {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-700);
}

[data-theme="light"] .social-links-contact {
  border-top-color: var(--stone-200);
}

.social-links-contact a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone-700);
  border-radius: 0.5rem;
  color: var(--stone-300);
  transition: all var(--transition-fast);
}

.social-links-contact a:hover {
  background: var(--amber-500);
  color: white;
}

[data-theme="light"] .social-links-contact a {
  background: var(--stone-100);
  color: var(--stone-600);
}

[data-theme="light"] .social-links-contact a:hover {
  background: var(--amber-500);
  color: white;
}
