@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Outfit:wght@100..900&family=Permanent+Marker&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --bg-color: #0d0f0f;
  --bg-card: rgba(22, 26, 26, 0.7);
  --bg-chalkboard: #161a1a;
  --text-main: #fcfcfc;
  --text-muted: #b2b8b8;
  
  /* Color Palette matching Truck & Logo */
  --green-truck: #39cf25;
  --green-hover: #2eb41c;
  --green-glow: rgba(57, 207, 37, 0.35);
  
  --orange-logo: #ff6a00;
  --orange-hover: #e05d00;
  --orange-glow: rgba(255, 106, 0, 0.35);
  
  --yellow-chalk: #fbc02d;
  --white-chalk: #f5f5f0;
  --black-matte: #070808;
  
  /* Typography */
  --font-ui: 'Outfit', sans-serif;
  --font-chalk-heading: 'Permanent Marker', cursive;
  --font-chalk-body: 'Caveat', cursive;
  
  /* Transitions & Radii */
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glass-border: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   BASE & RESET
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-ui);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(22, 26, 26, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(57, 207, 37, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

input, textarea, select {
  font-family: inherit;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: #252a2a;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-logo);
}

/* ==========================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }

.section-title {
  font-family: var(--font-chalk-heading);
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-family: var(--font-chalk-body);
  font-size: 1.8rem;
  color: var(--orange-logo);
  margin-bottom: 50px;
}

/* Highlight styles */
.highlight-orange { color: var(--orange-logo); }
.highlight-green { color: var(--green-truck); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.btn-green {
  background-color: var(--green-truck);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-green:hover {
  background-color: var(--green-hover);
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-3px);
}

.btn-orange {
  background-color: var(--orange-logo);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-orange:hover {
  background-color: var(--orange-hover);
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-main);
}
.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
  transform: translateY(-3px);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 15, 15, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(13, 15, 15, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.header.scrolled .container {
  height: 65px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid var(--orange-logo);
  transition: var(--transition);
}

.header.scrolled .logo-img {
  height: 42px;
  width: 42px;
}

.logo-text {
  font-family: var(--font-chalk-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.logo-text span {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.9rem;
  display: block;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-logo);
  transition: var(--transition);
}

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

.nav-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 10px;
  transition: var(--transition);
}

/* ==========================================
   FIXED BACKGROUND VIDEO
   ========================================== */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background-color: #0d0f0f;
  overflow: hidden;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10; /* Barely visible, 10% over solid black background */
  filter: grayscale(10%) contrast(105%);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  z-index: 1; /* Sits above the fixed background video */
  background: 
    linear-gradient(135deg, rgba(13, 15, 15, 0.95) 40%, rgba(13, 15, 15, 0.6) 100%),
    url('assets/images/website/truck-hero.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(57, 207, 37, 0.15);
  border: 1px solid var(--green-truck);
  color: var(--green-truck);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(57, 207, 37, 0.1);
  animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(57, 207, 37, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(57, 207, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 207, 37, 0); }
}

.hero-title {
  font-family: var(--font-chalk-heading);
  font-size: 4.8rem;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-framed-image {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 4px solid var(--orange-logo);
  position: relative;
  transform: rotate(-2deg);
  transition: var(--transition);
  background-color: var(--bg-card);
  padding: 10px;
}

.hero-framed-image:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 25px 60px var(--orange-glow);
}

.hero-truck-tag {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background-color: var(--green-truck);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-chalk-heading);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

/* ==========================================
   INTERACTIVE CHALKBOARD MENU
   ========================================== */
.menu-section {
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.menu-search-filter {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.menu-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.menu-search {
  width: 100%;
  padding: 15px 25px 15px 50px;
  background-color: rgba(22, 26, 26, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.menu-search:focus {
  outline: none;
  border-color: var(--orange-logo);
  box-shadow: 0 0 15px var(--orange-glow), inset 0 2px 5px rgba(0,0,0,0.5);
}

.menu-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.menu-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.filter-btn {
  padding: 10px 22px;
  background-color: rgba(22, 26, 26, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--orange-logo);
  color: var(--orange-logo);
}

.filter-btn.active {
  background-color: var(--orange-logo);
  border-color: var(--orange-logo);
  color: #fff;
  box-shadow: 0 0 15px var(--orange-glow);
}

/* Recreating the Blackboard Menu */
.chalkboard-container {
  background-color: #271f18; /* Wood background frame */
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
  border: 8px solid #3c2a1c;
  position: relative;
}

.chalkboard {
  background-color: var(--bg-chalkboard);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  
  /* Slate/Chalkboard Border Styling: Orange and Yellow/White Double Border */
  outline: 3px solid var(--orange-logo);
  outline-offset: -10px;
  border: 3px solid var(--yellow-chalk);
  
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.95);
}

/* Subtle chalk dust overlay */
.chalkboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 80%);
  pointer-events: none;
  border-radius: 12px;
}

/* Chalkboard 3-column grid mimicking menu.jpg */
.chalkboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.chalkboard-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.chalkboard-divider {
  width: 1px;
  background-image: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
  height: 100%;
}

/* Visual elements in the board matching menu.jpg */
.chalk-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
}

.chalk-ribbon {
  background-color: var(--orange-logo);
  color: #fff;
  font-family: var(--font-chalk-heading);
  font-size: 1.6rem;
  padding: 8px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  transform: rotate(-1deg);
  margin-bottom: 20px;
  border: 2px dashed rgba(255,255,255,0.5);
  position: relative;
}

.chalk-ribbon::before, .chalk-ribbon::after {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  bottom: -10px;
  z-index: -1;
}

.chalk-heading {
  font-family: var(--font-chalk-heading);
  font-size: 1.9rem;
  color: var(--yellow-chalk);
  letter-spacing: 1px;
  border-bottom: 2px dashed var(--yellow-chalk);
  padding-bottom: 6px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.chalk-chicken-box {
  border: 3px solid var(--orange-logo);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-top: 10px;
  position: relative;
}

.chalk-chicken-title {
  font-family: var(--font-chalk-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chalk-chicken-title span {
  color: var(--orange-logo);
  font-size: 1.8rem;
  font-family: var(--font-chalk-body);
}

.chalk-circle-logo {
  max-width: 140px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px dashed var(--orange-logo);
  padding: 4px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Menu Items inside the board */
.menu-item-row {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-item-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.menu-item-row.selected {
  background-color: rgba(57, 207, 37, 0.06);
  border-color: var(--green-truck);
  box-shadow: 0 0 15px rgba(57, 207, 37, 0.1);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.menu-item-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  margin: 0 5px;
  position: relative;
  top: -4px;
}

.menu-item-price {
  font-family: var(--font-ui);
  font-weight: 800;
  color: var(--yellow-chalk);
  font-size: 1.15rem;
}

.menu-item-row.selected .menu-item-price {
  color: var(--green-truck);
}

.menu-item-desc {
  font-family: var(--font-chalk-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Chalk illustrations SVGs */
.chalk-svg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.chalk-spatula-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.chalk-spatula-svg {
  width: 180px;
  height: auto;
  stroke: var(--white-chalk);
}

.flame-path {
  stroke: var(--orange-logo);
  animation: flame-flicker 1.5s infinite alternate;
}

@keyframes flame-flicker {
  0% { transform: scale(1); stroke-width: 1.5; }
  100% { transform: scale(1.05); stroke-width: 2.2; }
}

.chalk-drawing {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chicken-leg-svg {
  width: 110px;
  height: auto;
  margin-top: 10px;
  stroke: var(--white-chalk);
}

.sausage-fork-svg {
  width: 120px;
  height: auto;
  stroke: var(--white-chalk);
}

.drink-bottle-svg {
  width: 80px;
  height: auto;
  margin-top: 20px;
  stroke: var(--white-chalk);
}

/* Custom chalk annotations */
.sides-desc {
  font-family: var(--font-chalk-body);
  font-size: 1.4rem;
  color: var(--yellow-chalk);
  line-height: 1.4;
  padding: 10px 0;
}

/* ==========================================
   BUILD-A-PLATE CART DRAWER (INTERACTIVE)
   ========================================== */
/* Floating Plate Widget */
.floating-plate-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--green-truck);
  color: #fff;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(57, 207, 37, 0.4);
  cursor: pointer;
  z-index: 999;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.floating-plate-btn:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: var(--green-hover);
  box-shadow: 0 12px 30px rgba(57, 207, 37, 0.6);
}

.plate-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--orange-logo);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-color);
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* Sliding Cart Drawer */
.plate-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: #121515;
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1050;
  transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  display: flex;
  flex-direction: column;
}

.plate-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-family: var(--font-chalk-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--orange-logo);
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.drawer-close:hover {
  color: #fff;
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.empty-plate-text {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-chalk-body);
  font-size: 1.5rem;
  margin-top: 40px;
}

.plate-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plate-item {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.plate-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 25px;
}

.plate-item-name {
  font-weight: 700;
  font-size: 1rem;
}

.plate-item-price {
  color: var(--yellow-chalk);
  font-weight: 700;
}

.plate-item-remove {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.plate-item-remove:hover {
  color: #ff3333;
}

/* Side Dishes Selector inside the cart item */
.side-dish-picker {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.side-dish-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

.side-dish-select {
  width: 100%;
  background-color: #1a1e1e;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.side-dish-select:focus {
  border-color: var(--green-truck);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--glass-border);
  background-color: rgba(22, 26, 26, 0.4);
}

.plate-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.plate-total-label {
  font-weight: 600;
  font-size: 1.1rem;
}

.plate-total-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-truck);
  text-shadow: 0 0 10px rgba(57, 207, 37, 0.1);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   PHOTO GALLERY
   ========================================== */
.gallery-section {
  background-color: var(--bg-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

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

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--orange-logo);
  box-shadow: 0 15px 35px var(--orange-glow);
}

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

/* Make some gallery grid elements larger for masonry-style interest */
.gallery-item.large {
  grid-row: span 2;
  grid-column: span 1;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-info-title {
  font-family: var(--font-chalk-heading);
  font-size: 1.2rem;
  color: var(--yellow-chalk);
}

.gallery-info-desc {
  font-size: 0.8rem;
  color: #fff;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 8, 8, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.lightbox-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  border: 3px solid var(--orange-logo);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 20px;
  font-family: var(--font-chalk-body);
  font-size: 1.8rem;
  color: var(--yellow-chalk);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.lightbox-close:hover {
  background-color: var(--orange-logo);
  transform: rotate(90deg);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-btn:hover {
  background-color: var(--orange-logo);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   CATERING & SCHEDULE SECTION
   ========================================== */
.catering-section {
  background-color: transparent;
  background-image: radial-gradient(circle at center, rgba(57, 207, 37, 0.015) 0%, transparent 70%);
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.catering-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.catering-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  background-color: rgba(13, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--green-truck);
  box-shadow: 0 0 12px var(--green-glow);
}

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

/* Social links box styled custom */
.social-invite-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateX(8px);
  border-color: var(--orange-logo);
  box-shadow: 0 5px 15px var(--orange-glow);
}

.social-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.social-card-insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social-card-fb {
  background-color: #1877f2;
}

.social-card-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.social-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--black-matte);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 1; /* Cover the fixed background video completely */
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid var(--orange-logo);
}

.footer-desc {
  color: var(--text-muted);
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-chalk-heading);
  font-size: 1.2rem;
  color: var(--orange-logo);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--orange-logo);
  padding-left: 5px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-info-icon {
  color: var(--orange-logo);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .chalkboard-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .chalkboard-divider {
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
    margin: 15px 0;
  }
  .catering-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 50px 0;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image-wrapper {
    order: -1;
  }
  .hero-framed-image {
    max-width: 340px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .floating-plate-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .plate-drawer {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }
}

/* ==========================================
   ADDITIONAL CATERING PACKAGES & FAQS
   ========================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange-logo);
  box-shadow: 0 15px 35px var(--orange-glow);
}

.package-card.featured {
  border: 2px solid var(--green-truck);
  box-shadow: 0 10px 30px rgba(57, 207, 37, 0.15);
}

.package-card.featured:hover {
  box-shadow: 0 15px 35px var(--green-glow);
}

.package-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green-truck);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(57, 207, 37, 0.3);
}

.package-card-header {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.package-title {
  font-family: var(--font-chalk-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow-chalk);
  line-height: 1.1;
}

.package-card.featured .package-price {
  color: var(--green-truck);
}

.package-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: normal;
}

.package-min {
  font-family: var(--font-chalk-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.package-features li span {
  color: var(--green-truck);
  font-weight: bold;
}

/* Process Steps & FAQs Grid */
.catering-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.catering-sub-title {
  font-family: var(--font-chalk-heading);
  font-size: 1.8rem;
  color: var(--orange-logo);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  background-color: #1c2222;
  color: var(--yellow-chalk);
  font-weight: 800;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--yellow-chalk);
  flex-shrink: 0;
}

.process-step:nth-child(even) .step-num {
  color: var(--green-truck);
  border-color: var(--green-truck);
}

.step-info h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.step-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: rgba(22, 26, 26, 0.4);
  border-left: 3px solid var(--orange-logo);
  padding: 16px 20px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .catering-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.package-card.selected {
  border: 2px solid var(--green-truck) !important;
  box-shadow: 0 0 25px var(--green-glow) !important;
  transform: translateY(-8px);
}

/* Dynamic Blackboard Promo Card */
.menu-image-promo {
  margin-top: 15px;
  animation: chalkFadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-frame {
  background-color: #1a1e1e;
  border: 4px solid var(--white-chalk);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transform: rotate(2.5deg);
  transition: var(--transition);
}

.promo-frame:hover {
  transform: rotate(0deg) scale(1.04);
  border-color: var(--orange-logo);
  box-shadow: 0 15px 35px var(--orange-glow);
}

#promoImg {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  display: block;
  object-fit: cover;
}

.promo-caption {
  font-family: var(--font-chalk-body);
  font-size: 1.6rem;
  color: var(--yellow-chalk);
  text-align: center;
  margin-top: 10px;
  line-height: 1.2;
}

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

/* ==========================================
   REAL CUSTOMER REVIEWS SECTION (STAGGERED SLIDER)
   ========================================== */
.reviews-section {
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.stagger-reviews-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.reviews-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.review-card {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  border: 2px solid var(--glass-border);
  padding: 30px;
  background-color: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
  box-sizing: border-box;
}

/* Diagonal Cut Corner Line */
.review-card::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 48px;
  width: 70.7px; /* SQRT_5000 */
  height: 2px;
  background-color: var(--glass-border);
  transform: rotate(45deg);
  transform-origin: top right;
  pointer-events: none;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

/* Active Center Card */
.review-card.active {
  background-color: var(--green-truck);
  color: #fff;
  border-color: var(--green-truck);
  box-shadow: 0px 8px 0px 4px var(--bg-chalkboard);
}

.review-card.active::after {
  background-color: var(--bg-chalkboard);
}

/* Review elements */
.review-avatar {
  height: 56px;
  width: 48px;
  background-color: rgba(255,255,255,0.05);
  object-fit: cover;
  object-position: top;
  box-shadow: 3px 3px 0px var(--bg-color);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.review-card.active .review-avatar {
  box-shadow: 3px 3px 0px var(--green-hover);
  border-color: rgba(255,255,255,0.3);
}

.review-quote {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-main);
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
  transition: var(--transition);
}

.review-card.active .review-quote {
  color: #fff;
}

.review-by {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  transition: var(--transition);
}

.review-card.active .review-by {
  color: rgba(255, 255, 255, 0.85);
}

/* Controls style */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.slider-btn {
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: var(--bg-chalkboard);
  color: var(--text-main);
  border: 2px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.slider-btn:hover {
  background-color: var(--green-truck);
  color: #fff;
  border-color: var(--green-truck);
  box-shadow: 0 0 15px var(--green-glow);
}

/* ==========================================
   GALLERY COLLAPSE / EXPAND MECHANICS
   ========================================== */
.gallery-wrapper {
  position: relative;
  width: 100%;
  max-height: 5000px; /* Large value for smooth transition */
  transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.gallery-wrapper.collapsed {
  max-height: 1020px; /* Exactly 4 rows: 4 * 240px + 3 * 20px gap */
}

.gallery-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, var(--bg-color) 0%, rgba(13, 15, 15, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.gallery-wrapper.collapsed .gallery-fade-overlay {
  opacity: 1;
}

/* ==========================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
  }
  
  .hero-desc {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
  }
  
  .hero-framed-image {
    max-width: 100% !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 160px !important;
    gap: 12px !important;
  }
  
  .gallery-item.wide, .gallery-item.large {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  .gallery-wrapper.collapsed {
    max-height: 1020px !important; /* Fits exactly 6 rows: 6 * 160px + 5 * 12px gap = 1020px */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem !important;
  }
}
