/* ============================================
   SEXY SMASH — Design System & Styles
   Dark premium theme with warm neon accents
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-card: #161616;
  --color-bg-card-hover: #1c1c1c;
  --color-surface: #1a1a1a;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);

  /* Neon red accent */
  --color-accent: #ff1a1a;
  --color-accent-light: #ff4d4d;
  --color-accent-dark: #cc0000;
  --color-accent-glow: rgba(255, 26, 26, 0.4);
  --color-accent-subtle: rgba(255, 26, 26, 0.08);

  /* Text - All Red as requested */
  --color-text-primary: #ff4d4d;
  --color-text-secondary: #ff8080;
  --color-text-muted: #ff9999;

  /* Typography */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--color-accent-glow), 0 0 60px rgba(245, 200, 66, 0.15);
  --shadow-glow-sm: 0 0 10px rgba(245, 200, 66, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}


/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--color-accent-glow), 0 0 60px rgba(245, 200, 66, 0.1);
  }
  50% {
    box-shadow: 0 0 30px var(--color-accent-glow), 0 0 80px rgba(245, 200, 66, 0.2);
  }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 7px rgba(245, 200, 66, 0.6),
      0 0 20px rgba(245, 200, 66, 0.4),
      0 0 40px rgba(245, 200, 66, 0.2);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
  transition: var(--transition-base);
}

.nav-logo:hover {
  filter: brightness(1.3) drop-shadow(0 0 8px var(--color-accent-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: var(--transition-base);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-base);
  box-shadow: var(--shadow-glow-sm);
}

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

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

.nav-order-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-size: 0.875rem !important;
}

.nav-order-btn::after {
  display: none !important;
}

.nav-order-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-primary) !important;
  box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition-base);
  border-radius: 2px;
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   HERO SECTION — Text-focused with backdrop
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 15vh;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.7);
}

/* Film grain overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  z-index: 1;
  pointer-events: none;
}

/* Gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.1) 30%,
    rgba(10, 10, 10, 0.3) 60%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title .accent {
  color: var(--color-accent);
  font-style: italic;
  text-shadow:
    0 0 7px rgba(245, 200, 66, 0.6),
    0 0 20px rgba(245, 200, 66, 0.3),
    0 0 40px rgba(245, 200, 66, 0.15);
}

.hero-tagline {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--color-accent-glow), 0 0 80px rgba(245, 200, 66, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-hover);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ============================================
   ABOUT / STORY SECTION
   ============================================ */
.about {
  padding: var(--space-5xl) 0;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('assets/storefront.jpg') no-repeat center center/cover;
}

.about-grid {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text .section-label {
  justify-content: center;
}

.about-text .section-label::before {
  display: none;
}

.about-text .section-subtitle {
  margin-bottom: var(--space-xl);
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

/* ============================================
   BURGERS SECTION — 4 Burger Showcase
   ============================================ */
.burgers {
  padding: var(--space-5xl) 0;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('assets/bg-pool.jpg') no-repeat center center/cover;
  position: relative;
}

.burgers-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.burgers-header .section-label {
  justify-content: center;
}

.burgers-header .section-label::before {
  display: none;
}

.burgers-header .section-subtitle {
  margin: 0 auto;
}

.burgers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.burger-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  cursor: pointer;
}

.burger-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 200, 66, 0.1);
}

.burger-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

/* Subtle bottom gradient so text is readable */
.burger-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--color-bg-card), transparent);
  pointer-events: none;
}

.burger-card-info {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  text-align: center;
}

.burger-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
  transition: var(--transition-base);
}

.burger-card:hover .burger-card-name {
  color: var(--color-accent);
}

.burger-card-type {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Neon number badge */
.burger-card-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  z-index: 2;
  transition: var(--transition-base);
}

.burger-card:hover .burger-card-badge {
  background: var(--color-accent);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-glow-sm);
}

/* ============================================
   GALLERY / SIDES SHOWCASE
   ============================================ */
.gallery {
  padding: var(--space-5xl) 0;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('assets/bg-boxes.jpg') no-repeat center center/cover;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.gallery-header .section-label {
  justify-content: center;
}

.gallery-header .section-label::before {
  display: none;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0) 60%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: var(--transition-base);
}

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

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

/* Neon border on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 20px rgba(245, 200, 66, 0.1);
}

/* ============================================
   HOURS SECTION
   ============================================ */
.hours {
  padding: var(--space-5xl) 0;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('assets/bg-hoodie.jpg') no-repeat center center/cover;
  position: relative;
}

.hours-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.hours-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

/* Subtle accent glow */
.hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.hours-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hours-card-title .icon {
  font-size: 1.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  padding-left: var(--space-md);
}

.hours-day {
  font-weight: 500;
  color: var(--color-text-primary);
}

.hours-time {
  font-weight: 400;
  color: var(--color-text-secondary);
  font-variant-numeric: tabular-nums;
}

.hours-row.highlight .hours-day,
.hours-row.highlight .hours-time {
  color: var(--color-accent);
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.status-badge.open {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-glow 2s ease infinite;
}

.status-badge.open .status-dot {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.status-badge.closed .status-dot {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* ============================================
   DELIVERY SECTION
   ============================================ */
.delivery {
  padding: var(--space-5xl) 0;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('assets/bg-ghosts.jpg') no-repeat center center/cover;
}

.delivery-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.delivery-header .section-label {
  justify-content: center;
}

.delivery-header .section-label::before {
  display: none;
}

.delivery-header .section-subtitle {
  margin: 0 auto;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.delivery-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.delivery-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
}

.delivery-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-accent-subtle);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  transition: var(--transition-base);
}

.delivery-card:hover .delivery-card-icon {
  background: var(--color-accent);
  color: var(--color-bg-primary);
  transform: scale(1.1);
}

.delivery-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.delivery-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.delivery-card-arrow {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  transition: var(--transition-base);
  opacity: 0;
  transform: translate(-4px, 4px);
}

.delivery-card:hover .delivery-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--color-accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--space-5xl) 0;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('assets/bg-car.jpg') no-repeat center center/cover;
  position: relative;
}

.contact-grid {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-accent-subtle);
  font-size: 1.2rem;
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.contact-item-value {
  font-weight: 500;
  color: var(--color-text-primary);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 400px;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: var(--transition-base);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-primary);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-logo {
  height: 36px;
  filter: brightness(0.8);
}

.footer-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: var(--transition-base);
  font-size: 1.1rem;
}

.footer-social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: var(--shadow-glow-sm);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hours-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .burgers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-3xl);
    transition: var(--transition-base);
    border-left: 1px solid var(--color-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-tagline {
    letter-spacing: 0.1em;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .burgers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .delivery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
  }

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

  .section-label {
    justify-content: center;
  }

  .section-label::before {
    display: none;
  }

  .section-title,
  .section-subtitle {
    text-align: center;
  }

  .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .burger-card-name {
    font-size: 1.2rem;
  }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
