/* ========================
   GUSTANINI FOODTRUCK CSS
   ======================== */

:root {
  --teal: #2A9D8F;
  --teal-dark: #1e7a6f;
  --teal-light: #3dbdac;
  --brown: #7B4F28;
  --brown-light: #a06a3a;
  --gold: #c8860a;
  --black: #1a1a1a;
  --dark: #ffffff;
  --dark-2: #f7f7f7;
  --dark-3: #eeeeee;
  --dark-4: #dddddd;
  --gray: #666666;
  --light: #f0f0f0;
  --white: #1a1a1a;
  --page-bg: #ffffff;
  --card-bg: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Aliases */
  --red: var(--teal);
  --red-dark: var(--teal-dark);
  --yellow: var(--gold);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--teal); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(42,157,143,0.4);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42,157,143,0.6);
}
.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #cccccc;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}
.btn-pedidosya {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255,102,0,0.4);
  border: 2px solid #ff8533;
  animation: pulse-pedidosya 2s ease-in-out infinite;
}
.btn-pedidosya:hover {
  background: linear-gradient(135deg, #e65c00 0%, #ff6600 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255,102,0,0.6);
}
@keyframes pulse-pedidosya {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,102,0,0.4); }
  50% { box-shadow: 0 4px 30px rgba(255,102,0,0.7); }
}
.full-width { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--teal); }
.navbar.scrolled .nav-link { color: #444444; }
.navbar.scrolled .nav-link:hover { color: var(--teal); background: rgba(42,157,143,0.07); }
.nav-cta {
  background: var(--teal);
  color: #ffffff !important;
  padding: 8px 20px;
}
.nav-cta:hover { background: var(--teal-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: #333333; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.90) 0%,
    rgba(5,20,18,0.78) 45%,
    rgba(10,30,25,0.45) 75%,
    rgba(0,0,0,0.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 720px;
  padding-left: 48px;
}
.hero-badge {
  display: inline-block;
  background: rgba(42,157,143,0.15);
  border: 1px solid rgba(42,157,143,0.5);
  color: var(--teal-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #ffffff;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}
/* hero outline button override — stays white on dark photo */
.hero .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  margin: 0 auto;
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--teal);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-dark); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}
.stat-item > span:last-of-type {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
}
.stat-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- SLOGAN STRIP ---- */
.slogan-strip {
  background: #1a1a1a;
  border-top: 1px solid #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
  padding: 32px 24px;
  overflow: hidden;
}
.slogan-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.slogan-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: 3px;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}
.slogan-text em {
  font-style: normal;
  color: var(--teal);
}
.slogan-deco {
  font-size: 1.4rem;
  color: var(--teal);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ---- SECTION COMMONS ---- */
.section { padding: 100px 0; }

/* Alternating section backgrounds for light mode */
.menu-section   { background: #f8f9fa !important; }
.about-section  { background: #ffffff !important; }
.gallery-section{ background: #f8f9fa !important; }
.location-section{ background: #ffffff !important; }
.contact-section{ background: #f8f9fa !important; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.section-desc {
  font-size: 1.05rem;
  color: #666666;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- MENU SECTION ---- */
.menu-section { background: var(--dark); }

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--dark-4);
  background: transparent;
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--teal); color: var(--white); }
.tab-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: grid; }

.menu-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  animation: fadeUp 0.5s ease both;
}

.menu-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(42,157,143,0.15);
}
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body { padding: 20px; }
.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-card-top h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}
.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
  white-space: nowrap;
}
.price .old-price {
  font-size: 0.9rem;
  color: #999999;
  text-decoration: line-through;
  margin-right: 8px;
}
.menu-card-body > p {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 14px;
}
.menu-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.menu-tags span {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(42,157,143,0.15);
  color: var(--teal-light);
  border: 1px solid rgba(42,157,143,0.3);
}
.menu-tags span.offer { background: #e63946; color: #ffffff; border-color: #e63946; }
.menu-tags span.disc { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }
.menu-card.featured { border-color: var(--gold); }
.menu-card.featured:hover { border-color: var(--gold); box-shadow: 0 16px 48px rgba(233,196,106,0.25); }
.featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 1;
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  border: 1px solid var(--dark-4);
}
.about-chef-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-chef-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}
.about-chef-card strong { display: block; font-weight: 700; font-size: 0.95rem; color: #1a1a1a; }
.about-chef-card span { font-size: 0.8rem; color: #666666; }
.about-content { }
.about-content p {
  color: #555555;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.about-values { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-item > span { font-size: 1.5rem; }
.value-item strong { display: block; font-weight: 700; margin-bottom: 2px; color: #1a1a1a; }
.value-item p { font-size: 0.88rem; color: #666666; margin: 0; }

/* ---- GALLERY SECTION ---- */
.gallery-section { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 220px;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 452px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.gallery-cta { text-align: center; }

/* ---- LOCATION SECTION ---- */
.location-section { background: var(--black); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.location-detail { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { font-size: 1.4rem; }
.loc-item strong { display: block; font-weight: 700; margin-bottom: 4px; color: #1a1a1a; }
.loc-item p, .loc-item a {
  font-size: 0.92rem;
  color: #666666;
  line-height: 1.5;
}
.loc-item a:hover { color: var(--red); }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ---- CONTACT SECTION ---- */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid #e0e0e0;
  background: #ffffff;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.channel-card.wa { border-color: rgba(37,211,102,0.3); }
.channel-card.wa:hover { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.6); transform: translateX(4px); }
.channel-card.ig { border-color: rgba(42,157,143,0.3); }
.channel-card.ig:hover { background: rgba(42,157,143,0.08); border-color: rgba(42,157,143,0.6); transform: translateX(4px); }
.channel-icon { font-size: 1.8rem; }
.channel-card strong { display: block; font-weight: 700; color: #1a1a1a; }
.channel-card p { font-size: 0.85rem; color: #666666; margin: 0; }
.channel-arrow { margin-left: auto; font-size: 1.2rem; color: #aaaaaa; transition: var(--transition); }
.channel-card:hover .channel-arrow { color: var(--white); transform: translateX(4px); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: #333333; }
.form-group input,
.form-group textarea {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: var(--radius-sm);
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaaaaa; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.15);
}

/* ---- FOOTER ---- */
.footer { background: #1a1a1a; border-top: 1px solid #2d2d2d; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: #aaaaaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 16px 0 20px;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid #3d3d3d;
}
.footer-socials a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: #ffffff; }
.footer-links a, .footer-links p {
  font-size: 0.88rem;
  color: #aaaaaa;
  color: #777777;
  line-height: 1.5;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: #999999; }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.9); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { height: 360px; }
  .about-chef-card { right: 0; bottom: -16px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.4rem; padding: 12px 24px; color: #1a1a1a; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-content { padding: 120px 24px 80px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-chef-card { position: static; margin-top: 16px; }
  .about-img-wrap { height: 280px; }
  .section { padding: 64px 0; }
  .location-map { height: 300px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; }
}
