/* ============================================================
   La Costeñita Taquería & Catering — styles.css
============================================================ */

:root {
  --bg: #F5EDDD;
  --bg-alt: #FFFFFF;
  --black: #1A1A1A;
  --coral: #E9495F;
  --coral-dark: #C93049;
  --teal: #14958C;
  --orange: #F2932B;
  --text-secondary: #55504A;
  --gold: #FFD700;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Pacifico', cursive;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--black); font-family: var(--font-body);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.section-title {
  font-family: var(--font-title); font-weight: 700; font-size: clamp(2rem, 5vw, 3rem);
  text-align: center; position: relative; padding-bottom: 1rem; margin-bottom: 2.5rem; color: var(--black);
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 4px; background: linear-gradient(90deg, var(--coral), var(--coral-dark)); border-radius: 4px;
}

.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(233,73,95,0.08); border: 1px solid var(--coral); color: var(--coral-dark);
  padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem;
}
.badge-light { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.9rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap; min-height: 48px;
}
.btn-coral { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; box-shadow: 0 8px 24px rgba(233,73,95,0.3); }
.btn-black-outline { background: transparent; border: 2px solid var(--black); color: var(--black); }
.btn-white-solid { background: #fff; color: var(--black); box-shadow: 0 8px 24px rgba(0,0,0,0.25); border: 2px solid #fff; }
.btn-white-solid:hover { background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.btn:hover { transform: translateY(-3px); }
.btn-coral:hover { box-shadow: 0 12px 30px rgba(233,73,95,0.5); }
.btn::before {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

/* ============================================================
   Top banner
============================================================ */
.top-banner {
  background: var(--black); color: var(--bg); font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 0; white-space: nowrap; overflow-x: auto; scrollbar-width: none; text-align: center;
}
.top-banner::-webkit-scrollbar { display: none; }
.top-banner .container { display: inline-block; padding: 0 1.25rem; }

/* ============================================================
   Navbar
============================================================ */
.navbar {
  position: sticky; top: 0; left: 0; width: 100%; z-index: 1000;
  border-bottom: 3px solid var(--coral); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
/* Blur lives on its own layer (not on .navbar) so it doesn't become a CSS
   containing block for the position:fixed mobile drawer nested inside — a
   backdrop-filter/filter/transform on any ancestor traps fixed descendants. */
.navbar-bg {
  position: absolute; inset: 0; z-index: -1;
  background: rgba(245,237,221,0.95); backdrop-filter: blur(10px);
}
.navbar.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; padding: 0.55rem 1.25rem; max-width: 1350px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 50px; width: 50px; object-fit: contain; }
.nav-logo span { font-family: var(--font-script); font-weight: 400; font-size: 1.3rem; display: none; color: var(--black); }

.nav-menu { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-link { font-weight: 600; font-size: 0.92rem; position: relative; padding: 0.3rem 0; color: var(--black); }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--coral); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.btn-phone-nav {
  display: flex; align-items: center; gap: 0.35rem; background: var(--black); color: #fff; font-weight: 700;
  padding: 0.55rem 0.9rem; border-radius: 999px; font-size: 0.82rem; white-space: nowrap; min-height: 44px;
}

.lang-toggle { display: flex; background: var(--bg-alt); border: 1px solid var(--coral); border-radius: 999px; overflow: hidden; }
.lang-pill { padding: 0.4rem 0.7rem; font-size: 0.8rem; font-weight: 700; color: var(--black); transition: background 0.25s ease, color 0.25s ease; }
.lang-pill.active { background: var(--coral); color: #fff; }

.btn-order-nav {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; font-weight: 700;
  padding: 0.55rem 1.1rem; border-radius: 999px; font-size: 0.82rem; white-space: nowrap; min-height: 44px;
}

.cart-icon-btn { position: relative; font-size: 1.3rem; padding: 0.2rem 0.3rem; color: var(--black); min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; }
.cart-count {
  position: absolute; top: -4px; right: -6px; background: var(--coral); color: #fff; font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.cart-icon-btn.bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce { 0%,100% { transform: scale(1); } 30% { transform: scale(1.35); } 60% { transform: scale(0.9); } }

.hamburger { display: none; flex-direction: column; padding: 0.4rem; position: relative; z-index: 1051; min-height: 44px; min-width: 44px; justify-content: center; }
.hamburger span { display:block; width:24px; height:2px; background:#1A1A1A; border-radius:2px; transition: transform 0.3s ease, opacity 0.3s ease; margin: 5px 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }

/* ============================================================
   Hero
============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 4rem 1rem 4rem; }
.hero-bg { position: absolute; inset: 0; background: url('img/hero.png') center/cover no-repeat; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(26,26,26,0.72) 0%, rgba(201,48,73,0.28) 50%, rgba(26,26,26,0.2) 100%);
}
#particleContainer { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; bottom: -10px; border-radius: 50%;
  background: radial-gradient(circle, #FFE9B0 0%, var(--orange) 60%, transparent 100%);
  opacity: 0; animation-name: particleFloat; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
  box-shadow: 0 0 6px rgba(242,147,43,0.6);
}
@keyframes particleFloat {
  0% { opacity: 0; bottom: -10px; transform: translateX(0); }
  15% { opacity: 0.9; } 80% { opacity: 0.6; }
  100% { opacity: 0; bottom: 100%; transform: translateX(var(--drift)); }
}

.hero-content { position: relative; z-index: 3; max-width: 780px; margin: 0 auto; }

.hero-logo { animation: heartbeat 2s ease-in-out infinite !important; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2)); }
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}
@media(max-width:768px){ .hero-logo{ width:240px!important;max-width:240px!important;height:240px!important; } }

.hero-title { font-family: var(--font-script); font-weight: 400; font-size: clamp(3rem, 10vw, 5.5rem); line-height: 1; color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,0.45); }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 500; margin: 1rem 0 2rem; color: #FBF6EC; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.btn-black-outline.on-dark { border-color: #fff; color: #fff; }

.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.6rem; }
.hero-stats .stat {
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(233,73,95,0.5); padding: 0.5rem 1rem; border-radius: 999px;
}

/* ============================================================
   Bestsellers slider
============================================================ */
.bestsellers { background: var(--bg-alt); padding: 3.5rem 0 3rem; }
.bs-header { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto 1.5rem; padding: 0 1.25rem; }
.bs-header h2 { font-family: var(--font-title); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--black); }
.bs-arrows { display: flex; gap: 0.6rem; }
.bs-arrow {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 1px solid var(--coral); color: var(--black);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: background 0.25s ease, color 0.25s ease;
}
.bs-arrow:hover { background: var(--coral); color: #fff; }

.bs-track-wrap { overflow: hidden; padding: 0 1.25rem; }
.bs-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.5rem; max-width: 1200px; margin: 0 auto; }
.bs-track::-webkit-scrollbar { display: none; }
.bs-card {
  flex: 0 0 78%; scroll-snap-align: start; background: var(--bg); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bs-card:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.bs-card img { width: 100%; height: 150px; object-fit: cover; }
.bs-info { padding: 0.8rem 1rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.bs-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--black); }
.bs-info span { font-family: var(--font-title); font-weight: 700; color: var(--coral); font-size: 1.1rem; }
.bs-card-catering { border-color: var(--teal); }
.bs-card-catering .bs-info span { color: var(--teal); font-size: 0.85rem; }
@media (min-width: 640px) { .bs-card { flex: 0 0 45%; } }
@media (min-width: 992px) { .bs-card { flex: 0 0 23%; } }

/* ============================================================
   Info bar
============================================================ */
.info-bar { background: var(--black); padding: 1.1rem 0; }
.info-bar .container { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; justify-content: center; font-size: 0.82rem; font-weight: 600; text-align: center; color: var(--bg); }
.info-bar a { transition: color 0.2s ease; }
.info-bar a:hover { color: var(--coral); }

/* ============================================================
   Menu
============================================================ */
.menu-section { padding: 5rem 0 4rem; background: var(--bg-alt); }
.category-tabs { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 1rem; margin-bottom: 2.5rem; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.tab-pill {
  flex: 0 0 auto; padding: 0.55rem 1.2rem; border: 1.5px solid var(--coral); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--black); background: transparent;
  transition: background 0.25s ease, color 0.25s ease; white-space: nowrap; min-height: 44px; display: flex; align-items: center;
}
.tab-pill.active, .tab-pill:hover { background: var(--coral); color: #fff; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
@media (min-width: 992px) { .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; } }

.menu-card {
  background: var(--bg); border-radius: var(--radius); overflow: hidden; border: 2px solid var(--bg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06); position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-8px); border-color: var(--coral); box-shadow: 0 18px 36px rgba(233,73,95,0.15); }
.menu-card-img { aspect-ratio: 1/1; overflow: hidden; background: #eee; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.menu-card-body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.menu-card-body h3 { font-family: var(--font-title); font-weight: 700; font-size: 1rem; color: var(--black); }
.card-desc { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.choice-label { font-size: 0.7rem; font-weight: 700; color: var(--coral-dark); display: flex; flex-direction: column; gap: 0.25rem; }
.choice-select {
  border: 1px solid var(--coral); border-radius: 8px; padding: 0.45rem 0.5rem; font-size: 0.75rem;
  font-family: inherit; color: var(--black); background: var(--bg-alt); min-height: 40px;
}
.ref-img { font-size: 0.65rem; color: #999; font-style: italic; }
.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 0.6rem; flex-wrap: wrap; }
.card-price { font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; color: var(--coral); }

.btn-add {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 0.6rem 0.7rem; border-radius: 10px;
  white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease; min-height: 44px;
}
.btn-add:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(233,73,95,0.4); }

/* ============================================================
   Cart Panel
============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1998; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw; height: 100vh;
  background: var(--bg); border-left: 3px solid var(--coral); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  z-index: 1999; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s ease;
}
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.3rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.cart-header h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.2rem; color: var(--black); }
.cart-close { font-size: 1.5rem; color: var(--black); min-height: 44px; min-width: 44px; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; }
.cart-empty { color: #999; text-align: center; margin-top: 2rem; }
.cart-item { display: grid; grid-template-columns: 55px 1fr auto; gap: 0.8rem; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cart-item img { width: 55px; height: 55px; object-fit: cover; border-radius: 10px; }
.cart-item-info h5 { font-size: 0.85rem; margin-bottom: 0.2rem; color: var(--black); }
.cart-item-info span { color: var(--coral-dark); font-weight: 700; font-size: 0.85rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--coral); color: var(--black); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.cart-footer { padding: 1.2rem 1.3rem 1.5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-title); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; color: var(--black); }
.cart-total-row span:last-child { color: var(--coral-dark); }
.btn-cart-confirm { width: 100%; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; padding: 1rem; border-radius: 10px; font-weight: 700; min-height: 50px; }
@media (max-width: 480px) { .cart-panel { width: 100vw; } }

/* ============================================================
   Catering hero
============================================================ */
.catering-hero { position: relative; overflow: hidden; padding: 6rem 0; text-align: center; }
.catering-bg { position: absolute; inset: 0; background: url('img/catering.png') center/cover no-repeat; z-index: 0; }
.catering-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,26,0.6), rgba(201,48,73,0.35)); z-index: 1; }
.catering-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.catering-hero-inner h2 { font-family: var(--font-title); font-weight: 800; font-size: clamp(2rem, 5.5vw, 3.2rem); color: #fff; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.catering-hero-inner .catering-sub-text { color: #FBF6EC; font-size: 1.05rem; margin-bottom: 2rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }

/* ============================================================
   Catering menu (informational)
============================================================ */
.catering-menu-section { padding: 5rem 0; background: var(--bg-alt); }
.catering-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .catering-menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
@media (min-width: 992px) { .catering-menu-grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }
.catering-card {
  background: var(--bg); border-radius: var(--radius); overflow: hidden; border: 2px solid var(--bg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.05); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.catering-card:hover { transform: translateY(-6px); border-color: var(--teal); box-shadow: 0 14px 28px rgba(20,149,140,0.15); }
.catering-card-img { aspect-ratio: 1/1; overflow: hidden; background: #eee; }
.catering-card-img img { width: 100%; height: 100%; object-fit: cover; }
.catering-card-body { padding: 0.8rem 0.9rem; text-align: center; }
.catering-card-body h4 { font-family: var(--font-title); font-weight: 600; font-size: 0.85rem; color: var(--black); }

/* ============================================================
   Packages
============================================================ */
.packages-section { padding: 5rem 0; background: var(--bg); }
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 900px) { .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.package-card {
  background: var(--bg-alt); border: 2px solid rgba(0,0,0,0.06); border-radius: var(--radius); padding: 2rem 1.6rem;
  text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.05); position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card.popular { border-color: var(--coral); transform: scale(1.05); box-shadow: 0 16px 40px rgba(233,73,95,0.2); z-index: 2; }
.package-card:hover { transform: translateY(-6px); }
.package-card.popular:hover { transform: scale(1.05) translateY(-6px); }
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 999px; white-space: nowrap;
}
.package-card h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--black); }
.pkg-price-big { font-family: var(--font-title); font-weight: 800; font-size: 2.2rem; color: var(--coral); margin-bottom: 1.2rem; }
.package-card ul { text-align: left; margin-bottom: 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.package-card ul li { font-size: 0.86rem; color: var(--black); display: flex; align-items: flex-start; gap: 0.5rem; }
.package-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.pkg-cta { width: 100%; }

/* ============================================================
   Extras
============================================================ */
.extras-section { padding: 3rem 0 5rem; background: var(--bg); }
.extras-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 800px; margin: 0 auto; }
@media (min-width: 640px) { .extras-grid { grid-template-columns: 1fr 1fr; } }
.extra-card {
  background: var(--bg-alt); border: 1px solid rgba(242,147,43,0.3); border-radius: var(--radius);
  padding: 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.extra-card h4 { font-family: var(--font-title); font-weight: 600; font-size: 0.9rem; color: var(--black); }
.extra-price { font-family: var(--font-title); font-weight: 700; color: var(--orange); font-size: 1.1rem; white-space: nowrap; }

/* ============================================================
   Catering form
============================================================ */
.catering-form-section { padding: 5rem 0; background: var(--bg-alt); }
.catering-form {
  background: var(--bg); border: 1px solid rgba(233,73,95,0.2); border-radius: var(--radius);
  padding: 2rem 1.5rem; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.form-grid label { display: block; font-size: 0.8rem; margin-bottom: 0.4rem; color: var(--text-secondary); font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; background: var(--bg-alt); border: 1px solid #E5D9C3; border-radius: 10px;
  padding: 0.85rem 0.9rem; color: var(--black); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.25s ease; min-height: 48px;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--coral); }
.form-grid textarea { resize: vertical; min-height: 110px; }
.form-submit-wrap { text-align: center; margin-top: 1.8rem; }
.trust-strip { text-align: center; margin-top: 2rem; font-weight: 700; color: var(--coral-dark); font-size: 0.9rem; }

/* ============================================================
   Reviews
============================================================ */
.reviews { padding: 5rem 0; background: var(--bg); }
.reviews-google { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.reviews-google .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--bg-alt); border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius); padding: 1.4rem; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.review-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; }
.review-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-head h5 { font-size: 0.9rem; color: var(--black); }
.review-head .stars { color: var(--gold); font-size: 0.75rem; }
.review-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   Contact
============================================================ */
.contact { padding: 5rem 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .row { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; color: var(--black); }
.contact-info h4 { font-family: var(--font-title); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--black); }
.social-row { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--coral); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.social-row a:hover { background: var(--coral); }
.social-row a svg { width: 18px; height: 18px; fill: var(--black); transition: fill 0.25s ease; }
.social-row a:hover svg { fill: #fff; }

/* ============================================================
   Footer
============================================================ */
.footer { background: var(--black); border-top: 3px solid var(--coral); padding: 3rem 0 1.5rem; color: #fff; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; margin-bottom: 2rem; }
.footer-top img { height: 55px; }
.footer-top h3 { font-family: var(--font-script); font-weight: 400; font-size: 1.9rem; color: var(--bg); }
.footer-top .tag { color: var(--coral); font-weight: 700; font-size: 0.85rem; }
.footer-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; font-size: 0.85rem; margin-bottom: 1.2rem; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 1.8rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--coral); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #999; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.4rem; }
.footer-bottom p { margin-bottom: 0.3rem; }

/* ============================================================
   Floating WhatsApp
============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1500;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5); animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   Responsive nav
============================================================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: 80%; max-width: 320px; z-index: 1050;
    background: var(--bg); flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 2rem; padding: 2rem; transform: translateX(100%); transition: transform 0.4s ease;
    border-left: 2px solid var(--coral); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.25rem; }
  .nav-logo span { display: none; }
}
@media (min-width: 901px) { .nav-logo span { display: inline; } }
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-menu-grid { grid-template-columns: repeat(2, 1fr); }
}
