/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --near-black: #141414;
  --white: #ffffff;
  --cream: #f4f1ea;
  --red: #e2231a;
  --red-dark: #b81810;
  --gray: #9a9a9a;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(226, 35, 26, 0.35);
}
.btn-red:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

.nav-order { flex-shrink: 0; padding: 12px 22px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  padding: 90px 32px 110px;
  background: radial-gradient(circle at 20% 20%, rgba(226,35,26,0.08), transparent 50%), var(--black);
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.8rem;
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: -6px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 1px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-top: 10px;
  color: var(--white);
}
.hero-sub span { color: var(--red); }

.hero-desc {
  color: var(--gray);
  max-width: 480px;
  margin: 20px 0 32px;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.hero-slider {
  position: relative;
  aspect-ratio: 4/3.2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease;
}
.slide.active {
  opacity: 1;
  animation: kenburns 7s ease forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.slide-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 16px 22px;
  border-radius: 16px 4px 16px 4px;
  transform: rotate(-4deg);
  box-shadow: 0 10px 24px rgba(226,35,26,0.4);
  z-index: 5;
}
.slide-badge strong { font-size: 1.6rem; display: block; }

.slide-dots {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--near-black);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item i { font-size: 1.8rem; color: var(--red); }
.trust-item h4 { font-size: 1rem; margin-bottom: 2px; }
.trust-item p { font-size: 0.85rem; color: var(--gray); }

/* ===== SECTION HEAD ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--black);
}
.section-head.light h2 { color: var(--white); }
.section-head p { color: #666; margin-top: 10px; font-size: 1.05rem; }
.section-head.light p { color: var(--gray); }

/* ===== MENU ===== */
.menu-section { background: var(--cream); padding: 110px 32px; }

.menu-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.menu-card {
  background: var(--black);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); }

.menu-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.menu-card-body { padding: 18px; position: relative; }
.menu-card-body h3 { font-size: 1rem; margin-bottom: 6px; line-height: 1.3; }
.menu-card-body p { font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; line-height: 1.4; }

.price {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 18px;
  border-radius: 50px;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--black); padding: 110px 32px; }

.gallery-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}
.gallery-grid img:hover { transform: scale(1.03); filter: brightness(1); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn { from { transform: scale(0.9); opacity:0; } to { transform: scale(1); opacity:1; } }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

/* ===== FOOTER ===== */
.footer { background: var(--near-black); border-top: 2px solid var(--red); }

.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.craving-tag {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  color: var(--red);
  font-size: 1.2rem;
}
.footer-craving h2 {
  font-family: var(--font-display);
  font-size: 4rem;
}

.footer-cta h3 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 10px; }
.footer-cta p { color: var(--gray); font-size: 0.95rem; margin-bottom: 22px; max-width: 400px; }

.footer-follow h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 14px; }
.social-icons { display: flex; gap: 12px; margin-bottom: 18px; }
.social-icons a {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-icons a:hover { background: var(--red-dark); }

.footer-hours { font-size: 0.9rem; color: var(--gray); margin-bottom: 6px; }
.footer-hours i { color: var(--red); margin-right: 6px; }
.footer-tagline { font-style: italic; color: var(--red); font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.1rem; }
.footer-logo img { height: 30px; }
.footer-bottom p { font-size: 0.85rem; color: var(--gray); }
.copyright { width: 100%; text-align: center; margin-top: 8px; font-size: 0.78rem; }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 1500;
  animation: pulse 2.5s infinite;
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.15); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text { order: 2; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-slider { order: 1; }

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

  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--near-black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-order { display: none; }
  .hamburger { display: flex; }

  .float-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-craving h2 { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .slide.active { animation: none; }
  .float-whatsapp { animation: none; }
  html { scroll-behavior: auto; }
}