/* ===== BICHOS & BICHOS — Estilos Personalizados ===== */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #120808; }
::-webkit-scrollbar-thumb { background: #8B1A1A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #E8722A; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(18, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(232, 114, 42, 0.15);
}

/* ===== HERO ===== */
.hero-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.5), rgba(92,15,15,0.4)),
    url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Pool balls decoration */
.pool-ball {
  width: 60px; height: 60px;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.ball-8 {
  background: radial-gradient(circle at 35% 35%, #444, #111);
  top: 20%; left: 8%;
  animation-delay: 0s;
}
.ball-solid {
  background: radial-gradient(circle at 35% 35%, #E8722A, #8B1A1A);
  bottom: 30%; right: 10%;
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

/* Scroll indicator */
.scroll-indicator { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: #E8722A;
  color: white;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: #F5943D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,114,42,0.4);
}
.btn-secondary {
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-secondary:hover {
  background: white;
  color: #8B1A1A;
  transform: translateY(-2px);
}

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  background: rgba(232,114,42,0.15);
  color: #E8722A;
  border: 1px solid rgba(232,114,42,0.3);
  padding: 4px 16px;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== MENU TABS ===== */
.menu-tabs { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0; }
.tab-btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  color: #9ca3af;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.tab-btn:hover { color: #E8722A; }
.tab-btn.active {
  color: #E8722A;
  border-bottom-color: #E8722A;
  background: rgba(232,114,42,0.08);
}

/* ===== MENU CARDS ===== */
.menu-card {
  background: #1E0C0C;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(232,114,42,0.3);
}
.menu-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }

/* ===== PRICE TAGS ===== */
.price-tag {
  background: #E8722A;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tag-sm {
  background: rgba(232,114,42,0.2);
  color: #E8722A;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== DRINK ROWS ===== */
.drink-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  color: #d1d5db;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.drink-row:hover { background: rgba(255,255,255,0.04); }

.drink-row-desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  transition: background 0.2s;
}
.drink-row-desc:hover { background: rgba(255,255,255,0.04); }

.beer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: #9ca3af;
  transition: background 0.2s;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.beer-row:hover { background: rgba(255,255,255,0.04); }
.beer-row span.flex-1 { color: #e5e7eb; }

/* ===== PACK CARDS ===== */
.pack-card {
  background: #1E0C0C;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,114,42,0.4);
}
.pack-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.pack-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== PROMO CARDS ===== */
.promo-card {
  background: #1E0C0C;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,114,42,0.3);
}
.promo-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.promo-badge {
  display: inline-block;
  background: #E8722A;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 3px 12px;
  border-radius: 999px;
}

/* ===== SUCURSAL CARDS ===== */
.sucursal-card {
  background: #1E0C0C;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s ease;
}
.sucursal-card:hover { border-color: rgba(232,114,42,0.4); }
.sucursal-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* ===== SOCIAL BUTTONS ===== */
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.03);
}
.social-btn:hover {
  background: rgba(232,114,42,0.15);
  border-color: #E8722A;
  color: #E8722A;
  transform: translateY(-3px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV LINKS ===== */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #E8722A;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  .hero-bg { background-attachment: scroll; }
  .font-bebas.text-9xl { font-size: 5rem; }
}
