/* Trinity Pub - Optimized Styles */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* CSS Variables */
:root {
  /* Premium Irish Pub Colors */
  --primary-green: #1a5f4a;
  --primary-green-light: #2d8b6e;
  --primary-green-dark: #0d3d2e;
  --primary-green-glow: rgba(26, 95, 74, 0.3);

  --accent-gold: #c9a227;
  --accent-gold-light: #ddb84d;
  --accent-gold-dark: #9a7b1c;
  --accent-gold-glow: rgba(201, 162, 39, 0.3);

  /* Warm Cream Tones */
  --cream-100: #fdfbf7;
  --cream-200: #f7f3eb;
  --cream-300: #ebe5d9;

  /* Rich Dark Tones - Pub Atmosphere */
  --dark-900: #0a0a08;
  --dark-800: #1a1917;
  --dark-700: #2a2826;
  --dark-600: #3a3735;

  /* Copper Accent */
  --copper: #b87333;
  --copper-light: #d4956a;

  /* Guinness Inspired */
  --stout-brown: #1e1410;
  --stout-cream: #f5e6c8;

  /* Legacy Neutrals (keeping for compatibility) */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Typography Scale - Perfect Fourth (1.333) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.333rem;
  --text-2xl: 1.777rem;
  --text-3xl: 2.369rem;
  --text-4xl: 3.157rem;
  --text-5xl: 4.209rem;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Overlays */
  --color-dark-overlay: rgba(10, 10, 8, 0.95);
  --color-dark-overlay-light: rgba(10, 10, 8, 0.8);

  /* Focus states */
  --focus-outline: 2px solid var(--primary-green);
  --focus-outline-offset: 2px;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.25s ease-in-out;
  --transition-slow: 0.35s ease-in-out;
  --transition-slower: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows - Enhanced for premium feel */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow-green: 0 0 40px rgba(26, 95, 74, 0.2);
  --shadow-glow-gold: 0 0 40px rgba(201, 162, 39, 0.2);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Focus styles for accessibility */
*:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

/* Hide focus outline for mouse users */
.js-focus-visible *:focus:not(.focus-visible) {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--cream-100);
  background-color: var(--dark-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Age Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-modal-content {
  background: var(--white);
  padding: var(--space-12);
  border-radius: 1rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-xl);
}

.age-modal-logo h2 {
  font-family: var(--font-display);
  color: var(--accent-gold);
  font-size: 2rem;
  margin-bottom: var(--space-6);
}

.age-modal-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  color: var(--gray-800);
}

.age-modal-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.age-btn {
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.age-yes {
  background: var(--primary-green);
  color: var(--white);
}

.age-yes:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

.age-no {
  background: transparent;
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
}

.age-no:hover {
  color: var(--gray-800);
  border-color: var(--gray-500);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 8, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 var(--space-6);
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  transition: color 0.3s ease;
}

.nav-logo h1:hover {
  color: var(--accent-gold-light);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-1);
}

.nav-link {
  position: relative;
  color: var(--cream-200);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  padding: var(--space-3) var(--space-4);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream-100);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-100);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.1);
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.8) brightness(0.7);
}

/* Multi-layer overlay for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 8, 0.4) 70%, rgba(10, 10, 8, 0.8) 100%),
    linear-gradient(to bottom, rgba(10, 10, 8, 0.3) 0%, rgba(10, 10, 8, 0.1) 40%, rgba(10, 10, 8, 0.6) 100%);
  z-index: 2;
}

/* Fallback image for browsers without video support */
.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 8, 0.6), rgba(10, 10, 8, 0.4)),
              url('assets/trinity_03_24_EDIT-01.jpg');
  background-size: cover;
  background-position: center;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 10, 8, 0.6), rgba(10, 10, 8, 0.4)),
                url('assets/trinity_03_24_EDIT-01.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
}

.hero-content {
  max-width: 900px;
  padding: var(--space-8);
  z-index: 10;
  position: relative;
}

/* Decorative lines */
.hero-content::before,
.hero-content::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.hero-content::before {
  top: -20px;
}

.hero-content::after {
  bottom: -20px;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: var(--space-6);
  animation: heroTitleReveal 1.2s ease-out forwards;
}

@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.title-main {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 700;
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tight);
  color: var(--cream-100);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.3);
  animation: titleMainReveal 1s ease-out 0.2s forwards;
  opacity: 0;
}

@keyframes titleMainReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    letter-spacing: 0.3em;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: -0.02em;
  }
}

.title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--accent-gold);
  margin-top: var(--space-2);
  letter-spacing: 0.25em;
  line-height: var(--leading-tight);
  text-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
  animation: titleSubReveal 1s ease-out 0.5s forwards;
  opacity: 0;
}

@keyframes titleSubReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.5em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.25em;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--cream-200);
  margin: var(--space-6) 0 var(--space-8);
  letter-spacing: var(--tracking-wide);
  animation: fadeUp 1s ease-out 0.8s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 1s forwards;
  opacity: 0;
}

.btn-primary,
.btn-secondary {
  position: relative;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wide);
  display: inline-block;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--cream-100);
  border: none;
  box-shadow:
    0 4px 15px rgba(26, 95, 74, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(26, 95, 74, 0.5),
    0 0 40px rgba(26, 95, 74, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--cream-100);
  border: 2px solid var(--cream-200);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream-100);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  color: var(--dark-900);
  border-color: var(--cream-100);
  transform: translateY(-3px);
}

.btn-secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary span {
  position: relative;
  z-index: 1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: bounce 2s infinite 2s;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.hero-scroll-indicator span {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--cream-200);
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
  animation: scrollArrow 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scrollArrow {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}

/* Sections */
section {
  padding: var(--space-24) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-align: center;
  margin-bottom: var(--space-12);
  color: var(--cream-100);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: var(--space-4) auto 0;
  border-radius: 2px;
}

/* Section Eyebrow */
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 4px;
}

/* About Section */
.about {
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(26, 95, 74, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-text > h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  margin-bottom: var(--space-4);
  color: var(--cream-100);
}

.about-text > p:first-of-type {
  font-size: var(--text-lg);
  color: var(--cream-300);
  margin-bottom: var(--space-12);
  line-height: var(--leading-relaxed);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.about-story {
  max-width: 540px;
}

.about-story h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 600;
  color: var(--cream-100);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.about-story .highlight {
  color: var(--accent-gold);
}

.about-story .lead {
  font-size: var(--text-lg);
  color: var(--cream-300);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.about-story p {
  color: var(--cream-300);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

/* Legacy support for old about-content structure */
.about-content > h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  margin-bottom: var(--space-6);
  color: var(--cream-100);
  text-align: center;
}

.about-content > p {
  font-size: var(--text-lg);
  color: var(--cream-300);
  margin-bottom: var(--space-12);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  gap: var(--space-6);
  text-align: left;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-gold), var(--primary-green));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature:hover {
  transform: translateX(8px);
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(201, 162, 39, 0.1);
}

.feature:hover::before {
  opacity: 1;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(26, 95, 74, 0.3);
  font-size: 1.5rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: var(--space-2);
}

.feature-text p {
  font-size: var(--text-sm);
  color: var(--cream-300);
  line-height: var(--leading-normal);
}

.about-motto {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--accent-gold);
  text-align: center;
  margin-top: var(--space-12);
  padding: var(--space-8);
  position: relative;
}

.about-motto::before,
.about-motto::after {
  content: '"';
  font-size: var(--text-4xl);
  color: rgba(201, 162, 39, 0.2);
  position: absolute;
  font-family: var(--font-display);
}

.about-motto::before {
  top: 0;
  left: var(--space-4);
}

.about-motto::after {
  bottom: 0;
  right: var(--space-4);
}

/* Stats Row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--cream-300);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Menu Section */
.menu {
  background: var(--dark-900);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--dark-800), transparent);
  pointer-events: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

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

.menu-card {
  position: relative;
  height: 450px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-700);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 10;
  transition: border-color 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(26, 95, 74, 0.1);
}

.menu-card:hover::before {
  border-color: rgba(201, 162, 39, 0.3);
}

.menu-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-image {
  transform: scale(1.1);
}

.menu-card[data-type="bar"] .menu-card-image {
  background-image: url('assets/bar-card.jpg');
}

.menu-card[data-type="kitchen"] .menu-card-image {
  background-image: url('assets/kitchen-card.jpg');
}

.menu-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
  background:
    linear-gradient(to top,
      rgba(10, 10, 8, 0.95) 0%,
      rgba(10, 10, 8, 0.7) 30%,
      rgba(10, 10, 8, 0.3) 60%,
      transparent 100%
    );
  color: var(--cream-100);
  transition: all 0.6s ease;
  z-index: 5;
}

.menu-card:hover .menu-overlay {
  background:
    linear-gradient(to top,
      rgba(10, 10, 8, 0.98) 0%,
      rgba(10, 10, 8, 0.8) 40%,
      rgba(10, 10, 8, 0.4) 70%,
      rgba(10, 10, 8, 0.2) 100%
    );
}

.menu-card-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.menu-card:hover .menu-card-label {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: var(--space-2);
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-overlay h3 {
  transform: translateY(-4px);
}

.menu-overlay p {
  font-size: var(--text-base);
  color: var(--cream-300);
  margin-bottom: var(--space-4);
  opacity: 0.8;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.menu-card:hover .menu-overlay p {
  max-height: 100px;
  opacity: 1;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--cream-100);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.4s ease;
  transform: translateY(10px);
  opacity: 0;
}

.menu-card:hover .menu-btn {
  transform: translateY(0);
  opacity: 1;
}

.menu-btn:hover {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  box-shadow: 0 8px 24px rgba(26, 95, 74, 0.4);
}

.menu-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.menu-btn:hover svg {
  transform: translateX(4px);
}

/* Corner decoration */
.menu-card-corner {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  transition: all 0.4s ease;
}

.menu-card:hover .menu-card-corner {
  background: var(--accent-gold);
  transform: rotate(180deg) scale(1.1);
}

.menu-card-corner svg {
  width: 24px;
  height: 24px;
  stroke: var(--cream-100);
  fill: none;
  stroke-width: 2;
}

/* Afisha Section */
.afisha {
  background: var(--dark-900);
}

.afisha-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.afisha-link {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.afisha-link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow-gold);
}

.afisha-image {
  width: 100%;
  height: auto;
  display: block;
}

.afisha-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--cream-100);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  box-shadow: 0 4px 20px rgba(26, 95, 74, 0.4);
  transition: all 0.4s ease;
}

.afisha-link:hover .afisha-btn {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  box-shadow: 0 8px 30px rgba(26, 95, 74, 0.5);
  transform: translateX(-50%) translateY(-4px);
}

/* Events Section */
.events {
  background: var(--dark-800);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--dark-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 162, 39, 0.2);
}

.event-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.event-content {
  padding: var(--space-4);
}

.event-content h3 {
  margin-bottom: var(--space-1);
  font-weight: 600;
  color: var(--cream-100);
  font-size: var(--text-base);
}

.event-content p {
  color: var(--cream-300);
  font-size: var(--text-sm);
}

/* Loading, Error, and Empty States */
.loading, .error, .no-promotions {
  text-align: center;
  padding: var(--space-8);
  color: var(--cream-300);
  font-size: var(--text-base);
  grid-column: 1 / -1;
}

.loading {
  color: var(--primary-green-light);
  animation: pulse 2s ease-in-out infinite;
}

.error {
  color: var(--copper);
  background: rgba(184, 115, 51, 0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  border: 1px solid rgba(184, 115, 51, 0.2);
}

.no-promotions {
  color: var(--cream-300);
  font-style: italic;
}

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

/* Gallery Section */
.gallery {
  background: var(--dark-800);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-4);
}

/* Varied sizes for visual interest */
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(8) { grid-column: span 1; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-row: span 1; }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-700);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 8, 0.8) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover::after {
  border-color: var(--accent-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Zoom indicator */
.gallery-zoom {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: all 0.4s ease;
  z-index: 4;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-zoom svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-900);
  fill: none;
  stroke-width: 2;
}

/* Lazy loading styles */
.lazy-image {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.lazy-image.loaded {
  opacity: 1;
}

/* Lightbox Enhancement */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxZoom 0.4s ease forwards;
}

@keyframes lightboxZoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--accent-gold-light);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-900);
  stroke-width: 2;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 100%);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(201, 162, 39, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact .section-title {
  color: var(--cream-100);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: stretch;
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
  color: var(--cream-100);
}

.contact-item {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-2);
}

.contact-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
}

.contact-item h3 {
  color: var(--accent-gold);
  margin-bottom: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.contact-value {
  font-size: var(--text-lg);
  color: var(--cream-100);
}

.contact-item p,
.contact-item a {
  color: var(--cream-200);
  text-decoration: none;
  font-size: var(--text-lg);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-green-light);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 74, 0.2);
  border: 1px solid rgba(26, 95, 74, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.social-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 95, 74, 0.4);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--cream-100);
}

/* Legacy social-links a support */
.social-links a:not(.social-link) {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--cream-100);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all 0.4s ease;
  white-space: nowrap;
}

.social-links a:not(.social-link):hover {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 95, 74, 0.3);
}

@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links a:not(.social-link) {
    width: 100%;
    text-align: center;
  }
}

.contact-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: grayscale(0.8) contrast(1.1);
  transition: filter 0.4s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0) contrast(1);
}

.route-btn {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--cream-100);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(26, 95, 74, 0.4);
  z-index: 10;
}

.route-btn:hover {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 95, 74, 0.5);
}

.route-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Bottom Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 8, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-bar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  max-width: 500px;
  margin: 0 auto;
}

.bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--cream-300);
  transition: all 0.3s ease;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: 12px;
  min-width: 60px;
}

.bottom-btn:active {
  background: rgba(26, 95, 74, 0.2);
  color: var(--primary-green-light);
}

.bottom-btn:hover {
  color: var(--cream-100);
}

.bottom-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.bottom-text {
  font-size: var(--text-xs);
  font-weight: 500;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
  color: var(--cream-100);
  padding: var(--space-20) 0;
  padding-bottom: calc(var(--space-20) + 80px);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--primary-green));
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* Footer Brand */
.footer-brand {
  padding-right: var(--space-8);
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--dark-900);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

/* Footer Sections */
.footer-section h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(201, 162, 39, 0.2);
}

.footer-section a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-green-light);
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: var(--cream-100);
  padding-left: var(--space-4);
}

.footer-section a:hover::before {
  width: 12px;
}

/* Footer Contact Items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--gray-400);
  font-size: var(--text-sm);
  padding: var(--space-3) 0;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-green-light);
}

a.footer-contact-item:hover {
  color: var(--cream-100);
}

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

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

.footer-site-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-site-link:hover {
  color: var(--accent-gold-light);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-legal span {
  color: var(--gray-500);
  font-size: var(--text-xs);
}

.footer-legal span:last-child {
  background: rgba(201, 162, 39, 0.15);
  color: var(--accent-gold);
  padding: var(--space-1) var(--space-3);
  border-radius: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations for grids */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Button press effect */
.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98) !important;
  transition: transform 0.1s ease;
}

/* Animated underline link */
.animated-link {
  position: relative;
  text-decoration: none;
}

.animated-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.age-verified .age-modal {
  display: none;
}

/* Age Modal Dark Theme */
.age-modal {
  background: rgba(10, 10, 8, 0.9);
}

.age-modal-content {
  background: var(--dark-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-modal-content h3 {
  color: var(--cream-100);
}

.age-modal-content p {
  color: var(--cream-300);
}

.age-yes {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--cream-100);
}

.age-yes:hover {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
}

.age-no {
  background: transparent;
  color: var(--cream-300);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-no:hover {
  color: var(--cream-100);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    flex-direction: column;
    background: rgba(10, 10, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-8);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--space-2);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: var(--text-xl);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: var(--space-4);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: var(--space-4) var(--space-6);
  }

  .hero-scroll-indicator {
    bottom: calc(var(--space-20) + 70px);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    height: 350px;
  }

  .about-features {
    gap: var(--space-4);
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .feature::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }

  .feature:hover {
    transform: translateY(-4px);
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .age-modal-content {
    padding: var(--space-8);
    margin: var(--space-4);
  }

  section {
    padding: var(--space-16) 0;
  }

  .container {
    padding: 0 var(--space-3);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }
}

/* Touch-friendly tap targets */
@media (hover: none) {
  .btn-primary,
  .btn-secondary,
  .nav-link,
  .menu-card,
  .gallery-item,
  .social-link,
  .bottom-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .btn-primary:active {
    transform: scale(0.96);
    background: var(--primary-green-dark);
  }

  .menu-card:active {
    transform: scale(0.98);
  }

  .gallery-item:active img {
    transform: scale(1.05);
  }
}

/* Safe areas for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(var(--space-16) + env(safe-area-inset-bottom) + 80px);
  }

  .bottom-bar {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Swipeable Gallery on Mobile */
@media (max-width: 640px) {
  .gallery-grid.swipeable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    scrollbar-width: none;
  }

  .gallery-grid.swipeable::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid.swipeable .gallery-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
    aspect-ratio: 4/5;
  }

  .gallery-grid.swipeable .gallery-item:first-child {
    margin-left: var(--space-4);
  }

  .gallery-grid.swipeable .gallery-item:last-child {
    margin-right: var(--space-4);
  }
}

/* Prevent iOS zoom on form focus */
@media (max-width: 640px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .fade-in,
  .fade-up,
  .fade-left,
  .fade-right,
  .scale-up {
    opacity: 1;
    transform: none;
  }
}