/* --- ZE WEST BURGER - V2 Ultra Premium --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700&display=swap');

:root {
  /* Deep Dark / Saloon premium palette */
  --bg-darker: #030303;     /* True black */
  --bg-dark: #0a0808;       /* Very dark wood tone */
  --bg-card: #121212;
  --bg-card-hover: #1a1a1a;
  
  --primary-orange: #ff5500;
  --primary-orange-hover: #ff7733;
  --neon-glow: rgba(255, 85, 0, 0.4);
  --wood-beige: #e3bc9a;
  
  --text-light: #fefefe;
  --text-muted: #999999;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Apple-like ease */
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Resets --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; outline: none; }
img { max-width: 100%; display: block; }

/* --- Typography --- */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.1;
}
h1 { font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: -2px; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 2rem; }
.text-orange { color: var(--primary-orange); }
.text-beige { color: var(--wood-beige); }

/* --- Loader --- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.fade-out { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  animation: pulseLogo 1.5s infinite alternate ease-in-out;
}
.loader-logo span { color: var(--primary-orange); text-shadow: 0 0 15px var(--neon-glow); }
.loader-bar {
  width: 150px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin-top: 20px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.loader-progress {
  position: absolute;
  top: 0; left: 0; height: 100%;
  width: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
  animation: loadBar 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}
@keyframes pulseLogo { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.05); opacity: 1; text-shadow: 0 0 25px var(--neon-glow); } }
@keyframes loadBar { 0% { width: 0%; left: 0; } 50% { width: 100%; left: 0; } 100% { width: 100%; left: 100%; } }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background-color: var(--primary-orange);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #ff6a1a;
  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--text-light); /* Changed to white for better contrast */
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
}
.btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-darker);
  border-color: var(--text-light);
  transform: translateY(-3px);
}

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; width: 100%;
  padding: 1.5rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
}
.navbar.scrolled {
  background: rgba(3, 3, 3, 0.95);
  backdrop-filter: blur(15px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--primary-orange); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-family: var(--font-heading); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 1px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-orange); }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; padding-top: 80px;
  position: relative;
  overflow: hidden;
}
/* Subtle grid background */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

.hero-content { flex: 1; max-width: 600px; z-index: 10; }
.reveal-hero { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-hero.active { opacity: 1; transform: translateY(0); }

.hero-badges { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.8rem; border-radius: 50px;
  font-family: var(--font-heading); font-size: 0.85rem; color: #fff;
}
.badge i { color: var(--primary-orange); }

.hero-image-container {
  flex: 1; position: relative;
  display: flex; justify-content: center; align-items: center;
  height: 600px;
}
.parallax-layer { transition: transform 0.1s ease-out; position: relative; z-index: 5; }
@keyframes floatBurger {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.parallax-layer img {
  width: 100%; max-width: 650px;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.8));
  animation: floatBurger 6s ease-in-out infinite;
}

/* Advanced Smoke Animation */
.smoke-layer {
  position: absolute; inset: -20%; pointer-events: none; z-index: 6;
  opacity: 0.7; mix-blend-mode: screen;
}
.smoke {
  position: absolute; width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
  filter: blur(25px); border-radius: 50%; opacity: 0;
  animation: dynamicSmoke 6s infinite ease-in;
}
.smoke:nth-child(1) { left: 45%; bottom: 30%; animation-duration: 5s; }
.smoke:nth-child(2) { left: 35%; bottom: 20%; animation-delay: 1.5s; animation-duration: 7s; }
.smoke:nth-child(3) { left: 55%; bottom: 25%; animation-delay: 3s; animation-duration: 6s; }

/* Heat Glow Behind Burger */
.heat-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,85,0,0.2) 0%, rgba(0,0,0,0) 70%);
  filter: blur(40px); z-index: 1;
  animation: heatPulse 4s infinite alternate ease-in-out;
}

@keyframes dynamicSmoke {
  0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0; }
  30% { opacity: 0.4; }
  100% { transform: translateY(-300px) scale(2.5) rotate(45deg); opacity: 0; }
}
@keyframes heatPulse { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; } }

/* --- Sections Core --- */
.section-padding { padding: 8rem 5%; }
.section-title { text-align: center; margin-bottom: 4rem; }

/* --- Menu Interactive UX --- */
.menu-section { background-color: var(--bg-dark); }
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
}
.tab-btn {
  background: rgba(255,255,255,0.03); color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 2rem;
  font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase;
  border-radius: 50px; cursor: pointer; transition: var(--transition-smooth);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--primary-orange); border-color: var(--primary-orange);
  box-shadow: 0 0 15px var(--neon-glow);
}

.menu-pane { display: none; opacity: 0; }
.menu-pane.active { display: block; animation: smoothFadeIn 0.5s ease forwards; }
@keyframes smoothFadeIn { from{opacity:0; transform: translateY(15px);} to{opacity:1; transform: translateY(0);} }

/* Cards Layout */
.menu-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem;
}
.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 2.5rem 2rem;
  position: relative; transition: var(--transition-smooth);
  display: flex; flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--bg-card-hover);
  border-color: rgba(255,85,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px var(--neon-glow);
}
/* Absolute Badges */
.card-badge {
  position: absolute; top: -14px; right: 20px;
  background: var(--primary-orange); color: #fff;
  padding: 0.4rem 1rem; border-radius: 50px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  box-shadow: 0 5px 15px rgba(255,85,0,0.4);
}
.menu-card-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.menu-price { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-orange); display: block; margin-bottom: 1rem; font-weight: 700; }
.menu-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; flex-grow: 1; }
.menu-servi { color: var(--wood-beige); font-size: 0.85rem; font-weight: 600; font-style: italic; margin-bottom: 1.5rem; }
.btn-commander-card { width: 100%; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #fff; padding: 0.8rem; border-radius: 8px; cursor:pointer; font-family:var(--font-heading); font-size:1rem; text-transform:uppercase; transition: var(--transition-smooth); }
.menu-card:hover .btn-commander-card { background: var(--primary-orange); border-color: var(--primary-orange); }

/* --- Galerie Masonry --- */
.gallery { background: var(--bg-darker); }
.masonry-grid {
  column-count: 3; column-gap: 1.5rem; padding: 0 5%;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 1.5rem; position: relative; border-radius: 12px; overflow: hidden;
}
.masonry-item img {
  width: 100%; height: auto; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.masonry-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s;
}
.masonry-overlay i { font-size: 2.5rem; color: #fff; transform: scale(0.5); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-item:hover .masonry-overlay i { transform: scale(1); }

/* --- SEO Local Blocks --- */
.seo-super-section { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }
.seo-block h3 { color: var(--wood-beige); font-size: 1.3rem; margin-bottom: 1rem; }
.seo-block p { color: var(--text-muted); font-size: 0.95rem; }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-question {
  width: 100%; text-align: left; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  color: #fff; font-family: var(--font-heading); font-size: 1.2rem;
  padding: 1.5rem; margin-bottom: 0.5rem; cursor: pointer; border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth);
}
.faq-question:hover, .faq-question.active { background: rgba(255,85,0,0.1); border-color: rgba(255,85,0,0.3); }
.faq-question i { transition: transform 0.4s ease; color: var(--primary-orange); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 1.5rem; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* --- CTA Localisation / Final --- */
.cta-emotion {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('delivery_scooters.png') center/cover fixed;
  text-align: center; padding: 10rem 5%; border-top: 1px solid rgba(255,85,0,0.2);
}
.cta-emotion h2 { font-size: clamp(3rem, 6vw, 5rem); text-shadow: 0 0 30px rgba(0,0,0,0.8); }
.cta-emotion .btn-primary { font-size: 1.3rem; padding: 1.2rem 3rem; box-shadow: 0 10px 40px rgba(255,85,0,0.5); }

/* --- Floating Buttons --- */
.floating-container { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 1000; }
.float-btn {
  width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
  font-size: 1.5rem; color: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.5); transition: var(--transition-bounce);
}
.btn-wa { background: #25D366; }
.btn-uber { background: #00CCBC; }
.float-btn:hover { transform: scale(1.1) translateY(-5px); }

/* --- Sticky Mobile CTA --- */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(10, 8, 8, 0.95); backdrop-filter: blur(15px); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 5%; z-index: 999; transform: translateY(100%); transition: transform 0.4s ease;
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta-content { display: flex; gap: 10px; }
.mobile-sticky-cta .btn { flex: 1; padding: 0.8rem; font-size: 1rem; border-radius: 6px; }

/* Reveal classes */
.reveal { opacity: 0; transform: translateY(50px) scale(0.96); filter: blur(5px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 140px; }
  .hero-badges { justify-content: center; }
  .hero-content { margin-bottom: 3rem; }
  .masonry-grid { column-count: 2; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--bg-darker); flex-direction: column; align-items: center; justify-content: center; transition: 0.5s ease;
  }
  .nav-links.active { right: 0; }
  .menu-toggle { display: block; z-index: 1001; }
  .masonry-grid { column-count: 1; }
  .floating-container { display: none; } /* Hidden on mobile to use sticky CTA instead */
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 70px; /* Space for sticky CTA */ }
}
