/* ============================================
   CHILLIN PANAMÁ — Design System & Styles
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --red-primary: #D32F2F;
  --red-hover: #B71C1C;
  --red-glow: rgba(211, 47, 47, 0.4);
  --black: #0D0D0D;
  --carbon: #1A1A1A;
  --surface: #2D2D2D;
  --gray-mid: #4A4A4A;
  --gray-light: #6B6B6B;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --white-muted: #B0B0B0;
  --gold: #FFB300;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --nav-height: 70px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-sm: 8px;

  /* Theme-aware tokens (dark by default) */
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --bg-surface: #2D2D2D;
  --text-primary: #FFFFFF;
  --text-secondary: #F5F5F5;
  --text-muted: #B0B0B0;
  --nav-scrolled-bg: rgba(13, 13, 13, 0.85);
  --card-bg: #1A1A1A;
  --card-border: rgba(255, 255, 255, 0.06);
  --footer-bg: #0D0D0D;
}

/* --- Light Theme --- */
[data-theme="light"] {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F5;
  --bg-surface: #EEEEEE;
  --text-primary: #1A1A1A;
  --text-secondary: #333333;
  --text-muted: #6B6B6B;
  --nav-scrolled-bg: rgba(255, 255, 255, 0.92);
  --card-bg: #FFFFFF;
  --card-border: rgba(0, 0, 0, 0.08);
  --footer-bg: #1A1A1A;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--red-primary);
  z-index: 10000; width: 0%;
  transition: width 0.1s linear;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute; top: -100%;
  left: 16px; padding: 8px 16px;
  background: var(--red-primary); color: var(--white);
  z-index: 10001; border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-nav:focus { top: 10px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 9999; padding: 0 40px;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar__logo img {
  height: 50px; width: auto;
}

.navbar__logo-img--light { display: none; }
.navbar__logo-img--dark { display: block; }

[data-theme="light"] .navbar__logo-img--light { display: block; }
[data-theme="light"] .navbar__logo-img--dark { display: none; }

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 28px; letter-spacing: 2px;
  color: var(--red-primary);
}

/* --- Navbar Controls (toggle + hamburger) --- */
.navbar__controls {
  display: flex; align-items: center; gap: 12px;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
  background: none; border: none;
  cursor: pointer; padding: 8px;
  color: var(--text-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  position: relative;
}

.theme-toggle:hover {
  background: rgba(211, 47, 47, 0.15);
  color: var(--red-primary);
}

.theme-toggle__icon { transition: opacity 0.3s ease, transform 0.3s ease; }
.theme-toggle__icon--moon { display: none; }
.theme-toggle__icon--sun { display: block; }

[data-theme="light"] .theme-toggle__icon--moon { display: block; }
[data-theme="light"] .theme-toggle__icon--sun { display: none; }

.navbar__links {
  display: flex; gap: 32px; align-items: center;
}

.navbar__links a {
  font-family: var(--font-accent);
  font-size: 14px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-soft);
  position: relative; transition: var(--transition);
}

.navbar__links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--red-primary);
  transition: width 0.3s ease;
}

.navbar__links a:hover { color: var(--red-primary); }
.navbar__links a:hover::after { width: 100%; }

.btn-cta {
  font-family: var(--font-accent);
  font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 24px;
  background: var(--red-primary);
  color: var(--white); border: none;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-cta:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--red-glow);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Hamburger */
.navbar__hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; z-index: 10001;
  background: none; border: none; padding: 8px;
}

.navbar__hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__slideshow {
  position: absolute; inset: 0;
}

.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 2s ease-in-out, transform 9s ease-out;
  will-change: opacity, transform;
}

.hero__slide--active {
  opacity: 1;
  transform: scale(1);
  animation: heroSlideZoom 9s ease-in-out forwards;
}

@keyframes heroSlideZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.7) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 24px;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: 18px; font-weight: 600;
  letter-spacing: 6px; color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 90px);
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-size: 18px; font-weight: 300;
  color: var(--white-soft);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute; bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s ease infinite;
}

.hero__scroll-indicator span {
  display: block; width: 24px; height: 24px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  opacity: 0.6;
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section--full {
  max-width: 100%;
  padding: 100px 0;
}

.section__tagline {
  font-family: var(--font-accent);
  font-size: 14px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px; margin-bottom: 20px;
}

.section__subtitle {
  font-size: 17px; color: var(--white-muted);
  max-width: 640px; line-height: 1.8;
}

.section__subtitle--center {
  margin: 0 auto;
  text-align: center;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================
   MENU SECTION — Wings & Beer
   ============================================ */
.menu-section {
  background: var(--carbon);
  position: relative; overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 80px
  );
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; position: relative; z-index: 1;
}

.menu__text .section__subtitle { margin-bottom: 32px; }

.menu__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: var(--red-primary);
}

.menu-card__img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-card__body {
  padding: 20px;
}

.menu-card__icon { font-size: 28px; margin-bottom: 8px; }

.menu-card__title {
  font-family: var(--font-accent);
  font-size: 18px; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 6px;
}

.menu-card__desc {
  font-size: 14px; color: var(--white-muted);
  line-height: 1.5;
}

/* Sauces Strip */
.sauces-strip {
  display: flex; flex-wrap: wrap;
  gap: 12px; margin-top: 32px;
  justify-content: center; padding: 0 24px;
  max-width: 1200px; margin: 32px auto 0;
  position: relative; z-index: 1;
}

.sauce-badge {
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.3);
  padding: 8px 18px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 13px; letter-spacing: 1px;
  color: var(--white-soft);
  transition: var(--transition);
}

.sauce-badge:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

/* Menu Categories */
.menu-categories {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 24px 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.menu-categories__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.menu-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.menu-cat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.menu-cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: background 0.4s ease;
}

.menu-cat-card__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 16px 12px;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.menu-cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--red-primary);
  box-shadow: 0 16px 40px rgba(211, 47, 47, 0.25);
}

.menu-cat-card:hover .menu-cat-card__img {
  transform: scale(1.12);
}

.menu-cat-card:hover .menu-cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(211, 47, 47, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* ============================================
   EVENTS SECTION — Live Sports
   ============================================ */
.events-section {
  position: relative; overflow: hidden;
}

.events__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}

.events__content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
}

.events__header {
  text-align: center; margin-bottom: 60px;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.event-card {
  background: linear-gradient(165deg, rgba(30, 30, 30, 0.95), rgba(18, 18, 18, 0.98));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}

.event-card:not(.has-banner) { padding: 28px; }

/* Banner with gradient fade into body */
.event-card__banner {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.event-card__body {
  padding: 20px 28px 28px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

/* Animated left accent line */
.event-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--red-primary), #FF6659, var(--red-primary));
  background-size: 100% 200%;
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
  z-index: 3;
  animation: accentShift 3s ease-in-out infinite paused;
}

@keyframes accentShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

.event-card:hover::before {
  transform: scaleY(1);
  animation-play-state: running;
}

/* Shimmer glow on hover */
.event-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(211, 47, 47, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.event-card:hover::after { opacity: 1; }

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(211, 47, 47, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(211, 47, 47, 0.08);
}

.event-card__sport {
  font-size: 32px; margin-bottom: 4px;
}

.event-card__league {
  font-family: var(--font-accent);
  font-size: 11px; letter-spacing: 3px;
  color: var(--red-primary); font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  background: rgba(211, 47, 47, 0.12);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.event-card__match {
  font-family: var(--font-heading);
  font-size: 26px; letter-spacing: 1px;
  margin: 12px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #FFFFFF 0%, #CCCCCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-card__info {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 16px 0 24px;
  font-size: 13px; color: var(--white-muted);
}

.event-card__info span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
}

.event-card__info span::before {
  font-size: 14px;
}

.event-card__info span:first-child::before { content: '📅'; }
.event-card__info span:last-child::before { content: '📺'; }

/* ============================================
   GALLERY / INSTAGRAM
   ============================================ */
.gallery-section { background: var(--carbon); }

.gallery__header { text-align: center; margin-bottom: 50px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
}

.gallery__item {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.1); }

.gallery__item-overlay {
  position: absolute; inset: 0;
  background: rgba(211, 47, 47, 0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  font-size: 32px;
}

.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__cta {
  text-align: center; margin-top: 40px;
  padding: 0 24px;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.reviews-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.reviews__content {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__header {
  margin-bottom: 48px;
}

/* Overall Rating */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.reviews__rating-score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews__rating-number {
  font-family: var(--font-heading);
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1;
}

.reviews__stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.reviews__stars svg {
  filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.3));
  animation: starPulse 3s ease-in-out infinite;
}

.reviews__stars svg:nth-child(2) { animation-delay: 0.15s; }
.reviews__stars svg:nth-child(3) { animation-delay: 0.3s; }
.reviews__stars svg:nth-child(4) { animation-delay: 0.45s; }
.reviews__stars svg:nth-child(5) { animation-delay: 0.6s; }

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.reviews__rating-count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  width: 100%;
  text-align: center;
}

.reviews__google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition);
}

.reviews__google-badge:hover {
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.1);
}

/* Reviews Carousel */
.reviews__carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.reviews__carousel-wrapper::before,
.reviews__carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews__carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.reviews__carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.reviews__carousel {
  display: flex;
  gap: 24px;
  animation: reviewsScroll 35s linear infinite;
  width: max-content;
}

.reviews__carousel:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review Card */
.review-card {
  background: linear-gradient(165deg, var(--bg-surface), var(--card-bg));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  min-width: 340px;
  max-width: 380px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--red-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 188, 4, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(251, 188, 4, 0.05);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary), #FF6659);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--red-glow);
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.review-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

/* CTA Buttons */
.reviews__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews__btn-write {
  font-size: 15px;
  padding: 14px 32px;
  box-shadow: 0 4px 20px var(--red-glow);
}

.reviews__btn-write:hover {
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5);
}

.reviews__btn-see {
  font-size: 15px;
  padding: 14px 32px;
}

/* Light theme overrides for reviews */
[data-theme="light"] .reviews-section {
  background: var(--bg-primary);
}

[data-theme="light"] .review-card {
  background: linear-gradient(165deg, #FFFFFF, #F8F8F8);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .review-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(251, 188, 4, 0.08);
}

[data-theme="light"] .reviews__google-badge {
  background: #F8F8F8;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .reviews__carousel-wrapper::before {
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

[data-theme="light"] .reviews__carousel-wrapper::after {
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* ============================================
   LOCATION / CONTACT
   ============================================ */
.location-section { position: relative; }

.location__content {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
}

.location__header {
  text-align: center; margin-bottom: 50px;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 50px;
}

.location-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.location-card:hover {
  border-color: var(--red-primary);
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.1);
}

.location-card__map {
  width: 100%; height: 200px;
  overflow: hidden;
}

.location-card__map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(70%) contrast(1.1) brightness(0.7);
  transition: filter 0.5s ease;
}

.location-card:hover .location-card__map iframe {
  filter: grayscale(20%) contrast(1) brightness(0.9);
}

.location-card__name {
  font-family: var(--font-heading);
  font-size: 28px; letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 24px 28px 0;
}

.location-card__detail {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  font-size: 15px; color: var(--white-muted);
  padding: 0 28px;
}

.location-card__buttons {
  display: flex; gap: 12px; margin-top: 24px;
  flex-wrap: wrap;
  padding: 0 28px 28px;
}

.location-card__buttons .btn-cta {
  font-size: 12px; padding: 10px 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(211, 47, 47, 0.3);
  padding: 60px 24px 30px;
  text-align: center;
}

.footer__logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.footer__logo-img {
  height: 80px; width: auto;
  object-fit: contain;
}

.footer__socials {
  display: flex; gap: 20px;
  justify-content: center; margin-bottom: 30px;
}

.footer__socials a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--red-primary);
  border-radius: 50%;
  font-size: 20px;
  color: var(--white);
  transition: var(--transition);
}

.footer__socials a svg {
  fill: var(--white);
}

.footer__socials a:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px var(--red-glow);
}

.footer__socials a:hover svg {
  fill: var(--red-primary);
}

.footer__copy {
  font-size: 13px; color: var(--gray-light);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2s ease infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 90px; right: 28px;
  z-index: 9998;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1; pointer-events: all;
}

.back-to-top:hover {
  background: var(--red-primary);
  transform: translateY(-3px);
}

/* ============================================
   LIGHT THEME — Component Overrides
   ============================================ */
[data-theme="light"] .section--full.menu-section,
[data-theme="light"] .section--full.gallery-section {
  background: var(--bg-secondary);
}

[data-theme="light"] .section {
  background: var(--bg-primary);
}

[data-theme="light"] .section__subtitle,
[data-theme="light"] .section__subtitle--center {
  color: var(--text-muted);
}

[data-theme="light"] .section__title {
  color: var(--text-primary);
}

[data-theme="light"] .menu-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

[data-theme="light"] .menu-card__title,
[data-theme="light"] .menu-card__desc {
  color: var(--text-primary);
}

[data-theme="light"] .sauce-badge {
  border-color: var(--red-primary);
  color: var(--red-primary);
}

[data-theme="light"] .menu-cat-card {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

[data-theme="light"] .menu-cat-card:hover {
  box-shadow: 0 16px 40px rgba(211, 47, 47, 0.2);
}

[data-theme="light"] .location-section {
  background: var(--bg-secondary);
}

[data-theme="light"] .location-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

[data-theme="light"] .location-card__name {
  color: var(--text-primary);
}

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

[data-theme="light"] .location-card__buttons .btn-outline {
  border-color: var(--text-muted) !important;
  color: var(--text-primary) !important;
}

[data-theme="light"] .event-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.95));
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

[data-theme="light"] .event-card__match {
  background: linear-gradient(135deg, #1A1A1A 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

[data-theme="light"] .event-card__info span {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.06);
  color: var(--text-primary);
}

[data-theme="light"] .footer {
  background: var(--footer-bg);
  color: var(--white);
}

[data-theme="light"] .footer__copy {
  color: var(--white-muted);
}

[data-theme="light"] .navbar__links a:not(.btn-cta) {
  color: var(--text-primary);
}

[data-theme="light"] .navbar.scrolled .navbar__links a:not(.btn-cta) {
  color: var(--text-primary);
}

/* CTA buttons must ALWAYS have white text on red background */
[data-theme="light"] .btn-cta {
  color: #FFFFFF;
}

[data-theme="light"] .btn-outline {
  border-color: var(--red-primary);
  color: var(--red-primary);
}

[data-theme="light"] .back-to-top {
  background: var(--red-primary);
  color: var(--white);
}

[data-theme="light"] .scroll-progress,
[data-theme="light"] #scroll-progress {
  background: var(--red-primary);
}

[data-theme="light"] .navbar__hamburger span {
  background: var(--text-primary);
}

/* Hero must ALWAYS have white text (photos behind with dark overlay) */
[data-theme="light"] .hero__content {
  color: #FFFFFF;
}

[data-theme="light"] .hero__title {
  color: #FFFFFF;
}

[data-theme="light"] .hero__subtitle {
  color: #F5F5F5;
}

[data-theme="light"] .hero__tagline {
  color: var(--gold);
}

[data-theme="light"] .hero .btn-outline {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* Navbar links must be white when over the hero (not scrolled) */
[data-theme="light"] .navbar:not(.scrolled) .navbar__links a:not(.btn-cta) {
  color: #FFFFFF;
}

[data-theme="light"] .navbar:not(.scrolled) .theme-toggle {
  color: #FFFFFF;
}

[data-theme="light"] .navbar:not(.scrolled) .navbar__hamburger span {
  background: #FFFFFF;
}

/* Show dark logo when NOT scrolled (over hero), light logo when scrolled */
[data-theme="light"] .navbar:not(.scrolled) .navbar__logo-img--dark { display: block; }
[data-theme="light"] .navbar:not(.scrolled) .navbar__logo-img--light { display: none; }
[data-theme="light"] .navbar.scrolled .navbar__logo-img--dark { display: none; }
[data-theme="light"] .navbar.scrolled .navbar__logo-img--light { display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .navbar { padding: 0 20px; }
  .navbar__links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px; padding: 40px;
    transition: right 0.4s ease;
  }
  [data-theme="light"] .navbar__links {
    background: rgba(255, 255, 255, 0.97);
  }
  [data-theme="light"] .navbar__links a {
    color: var(--text-primary);
  }
  .navbar__links.open { right: 0; }
  .navbar__links a { font-size: 18px; }
  .navbar__hamburger { display: flex; }

  .menu__grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-categories__grid { grid-template-columns: repeat(3, 1fr); }
  .location__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { min-width: 300px; }
  .reviews__rating-number { font-size: 52px; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 42px; }
  .hero__tagline { font-size: 14px; letter-spacing: 4px; }
  .hero__subtitle { font-size: 15px; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn-cta { width: 100%; max-width: 280px; justify-content: center; }

  .section { padding: 70px 16px; }
  .section__title { font-size: 32px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__cards { grid-template-columns: 1fr; }
  .menu-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cat-card__label { font-size: 12px; letter-spacing: 1px; padding: 12px 8px; }
  .sauces-strip { gap: 8px; }
  .sauce-badge { font-size: 11px; padding: 6px 14px; }
  .location-card__buttons { flex-direction: column; }
  .location-card__buttons .btn-cta { width: 100%; justify-content: center; }
  .review-card { min-width: 280px; padding: 22px; }
  .reviews__rating-number { font-size: 44px; }
  .reviews__cta { flex-direction: column; align-items: center; }
  .reviews__cta .btn-cta { width: 100%; max-width: 320px; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__slide { animation: none; }
}
