/* ============================================
   JACK THE CHIPPER - Premium Design System
   Enhanced with Glassmorphism, Micro-Animations, 
   SVG Icon Styling & Dynamic Responsive Layouts
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,500;1,600;1,700&family=Lato:ital,wght@0,400;0,700;1,400&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --navy: #0b0d2e;
  --navy-dark: #06071b;
  --navy-card: #101342;
  --navy-glass: rgba(11, 13, 46, 0.85);
  
  --gold: #c9a84c;
  --gold-light: #f3e098;
  --gold-dark: #967727;
  --gold-glow: rgba(201, 168, 76, 0.35);
  
  --red: #e03a10;
  --red-light: #ff6633;
  --red-glow: rgba(224, 58, 16, 0.3);
  
  --white: #ffffff;
  --off-white: #f5f5f7;
  --grey-light: #d1d1d6;
  --grey: #8e8e93;
  --grey-dark: #2c2c2e;
  
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --border-color: rgba(201, 168, 76, 0.2);
  --border-glow: rgba(201, 168, 76, 0.4);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Oswald', sans-serif;

  /* Spacing & Sizes */
  --max-width: 1240px;
  --header-height: 70px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px var(--gold-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

ul, ol { list-style: none; }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   ENHANCED GLASSMORPHISM HEADER & NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(6, 7, 27, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(201, 168, 76, 0.35);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  transition: transform var(--transition-bounce);
}

.nav-brand:hover .nav-logo-mini {
  transform: scale(1.1) rotate(5deg);
}

.nav-brand-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-brand-title span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  position: relative;
  transition: all var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Navbar CTA Button */
.nav-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: all var(--transition-bounce);
  margin-left: 12px;
}

.nav-btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  color: var(--navy-dark);
}

/* Mobile Hamburger Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-fast);
}

.hamburger:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity 0.2s, background-color var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--gold);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--gold);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

/* ============================================
   HERO / BANNER ANIMATION & STYLING
   ============================================ */
/* Page Hero for Subpages */
.page-hero {
  margin-top: 0;
  padding: calc(var(--header-height) + 70px) 0 50px;
  text-align: center;
  background: radial-gradient(circle at center, var(--navy-card) 0%, var(--navy-dark) 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--header-height) + 70px) 0 50px;
  }
}

.hero {
  margin-top: var(--header-height);
  background: radial-gradient(circle at center, var(--navy-card) 0%, var(--navy-dark) 100%);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  padding: 40px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 16px;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: clamp(100px, 22vw, 150px);
  height: clamp(100px, 22vw, 150px);
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 35px var(--gold-glow);
  margin: 0 auto 20px;
  object-fit: cover;
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.hero-logo-img:hover {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 4.2rem);
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 4vw, 2.5rem);
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

/* ============================================
   PARALLAX & PHOTO SHOWCASE UTILITIES
   ============================================ */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 27, 0.8) 0%, rgba(11, 13, 46, 0.85) 100%);
  z-index: 1;
}

.photo-frame-vertical {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.photo-frame-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-frame-vertical:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.photo-frame-vertical:hover img {
  transform: scale(1.06);
}

.photo-frame-horizontal {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.photo-frame-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-frame-horizontal:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.photo-frame-horizontal:hover img {
  transform: scale(1.06);
}

/* Mobile Fallback for Parallax */
@supports (-webkit-touch-callout: none) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

/* ============================================
   TYPOGRAPHY & SECTION HEADINGS
   ============================================ */
.section-padding {
  padding: 80px 0;
}

.section-title-fancy {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

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

.section-title-red {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  text-align: center;
  background: linear-gradient(180deg, #ff8855 0%, var(--red) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 4px 15px var(--red-glow));
}

/* ============================================
   ENHANCED FOOD GRID & CARDS
   ============================================ */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.food-card {
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.food-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.food-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.food-card:hover::before {
  opacity: 1;
}

.food-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  transition: all var(--transition-bounce);
}

.food-card:hover .food-card-icon {
  transform: scale(1.15) rotate(8deg);
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.food-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
  font-style: italic;
  transition: color var(--transition-fast);
}

.food-card:hover h3 {
  color: var(--gold-light);
}

.food-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   BUTTONS & BADGES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 36px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-bounce);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-red {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 15px var(--red-glow);
}

.btn-red:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(224, 58, 16, 0.5);
}

/* ============================================
   DELIVERY & PROMO BANNERS
   ============================================ */
.delivery-banner {
  position: relative;
  background: radial-gradient(circle at right center, var(--navy-card) 0%, var(--navy-dark) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
  overflow: hidden;
}

.delivery-card {
  background: rgba(16, 19, 66, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition-base);
}

.delivery-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.delivery-badge-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  transition: all var(--transition-fast);
}

.delivery-badge:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   EVENTS GRID & LIVE MUSIC
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.event-card {
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.event-card.music-neon {
  background: linear-gradient(135deg, #092c18 0%, var(--navy-dark) 100%);
}

.event-card.music-jazz {
  background: linear-gradient(135deg, #2a0b36 0%, var(--navy-dark) 100%);
}

/* ============================================
   INSTAGRAM BANNER
   ============================================ */
.instagram-section {
  padding: 60px 0;
  text-align: center;
  background: var(--navy-dark);
  border-top: 1px solid var(--border-color);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-color);
  transition: all var(--transition-bounce);
}

.instagram-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   CONTACT & OPENING HOURS
   ============================================ */
.contact-hours-section {
  background: var(--navy-dark);
  padding: 80px 0 60px;
  border-top: 1px solid var(--border-color);
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1050px;
  margin: 0 auto;
}

.contact-box {
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-box h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 15px var(--gold-glow);
}

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

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hours-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   BRANCHES FOOTER BAR
   ============================================ */
.branches-bar {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
}

.branches-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.branch-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.branch-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.branch-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.branch-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.branch-info p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.social-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: all var(--transition-bounce);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   PDF MENU VIEWER & TABS
   ============================================ */
.pdf-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.pdf-tab-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-bounce);
}

.pdf-tab-btn:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.pdf-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pdf-tab-content {
  display: none;
  animation: fadeInUp 0.4s ease-out;
}

.pdf-tab-content.active {
  display: block;
}

.pdf-card-wrapper {
  background: var(--navy-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pdf-image-preview {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  transition: transform var(--transition-base);
}

.pdf-image-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.pdf-image-preview:hover {
  transform: scale(1.01);
  border-color: var(--gold);
}

.pdf-iframe-container {
  width: 100%;
  height: 800px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.pdf-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-action-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ============================================
   MENU PAGE SPECIFIC CARDS
   ============================================ */
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bottom-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-card-box {
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.menu-card-box:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN IMPROVEMENTS
   ============================================ */
@media (max-width: 992px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .takeaway-grid,
  .bottom-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 20px) 24px 30px;
    gap: 8px;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
  }

  .nav-btn-cta {
    width: 100%;
    margin: 16px 0 0 0;
    justify-content: center;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    padding: 20px 16px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7.5vw, 3.2rem);
    letter-spacing: 0.03em;
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 4.5vw, 1.8rem);
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0;
    gap: 12px !important;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  .food-card {
    padding: 14px 8px;
  }

  .food-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .food-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .food-card p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .events-grid,
  .contact-hours-grid,
  .takeaway-grid,
  .bottom-menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .branch-card {
    width: 100%;
    justify-content: center;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
