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

:root {
  --red: #C41E3A;
  --red-dark: #8B1528;
  --green: #1B6B3A;
  --green-dark: #0F4D28;
  --gold: #D4A529;
  --gold-light: #F5D77A;
  --cream: #FFF8EE;
  --cream-dark: #F5EDDE;
  --brown: #3E2723;
  --brown-light: #5D4037;
  --text: #2C1810;
  --text-light: #6B5B4F;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem 1.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover { background: var(--red-dark) !important; transform: scale(1.05); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(44,24,16,0.7) 0%, rgba(44,24,16,0.5) 50%, rgba(44,24,16,0.85) 100%),
    url('https://images.unsplash.com/photo-1615870216519-2f9fa575fa5c?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(44,24,16,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 165, 41, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: 5px;
}

.hero h1 .accent {
  color: var(--gold);
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 0.1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(196, 30, 58, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg { width: 30px; height: 30px; stroke: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS SHARED ===== */
section { padding: 5rem 1.5rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brown);
  line-height: 1.15;
  font-weight: 700;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: 16px;
  pointer-events: none;
}

.about-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: 12px;
}

.about-feature .icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}

/* ===== MENU ===== */
.menu {
  background: var(--cream);
}

.menu-container {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.menu-category-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 12px;
  flex-shrink: 0;
}

.menu-category-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--brown);
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.menu-item {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.menu-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.menu-item.featured {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  border: none;
}

.menu-item.featured .menu-item-name { color: var(--gold-light); }
.menu-item.featured .menu-item-desc { color: rgba(255,255,255,0.7); }
.menu-item.featured .menu-item-price { color: var(--gold); }

.menu-item.featured::after {
  content: '\2605  ESTRELLA';
  position: absolute;
  top: -8px;
  right: 16px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
}

.menu-item.featured { position: relative; overflow: visible; }

/* ===== DRINKS BANNER ===== */
.drinks-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.drinks-banner .section-tag { color: var(--gold-light); }
.drinks-banner .section-title { color: var(--white); }

.drinks-grid {
  max-width: 900px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.drink-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.drink-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.drink-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.drink-name { color: var(--white); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.drink-price { color: var(--gold-light); font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 800; }

/* ===== LOCATION ===== */
.location {
  background: var(--white);
}

.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-card:last-child { border-bottom: none; }

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.info-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.5;
}

.info-value a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.info-value a:hover { text-decoration: underline; }

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background:
    linear-gradient(135deg, rgba(139, 21, 40, 0.92) 0%, rgba(196, 30, 58, 0.88) 100%),
    url('https://images.unsplash.com/photo-1551504734-5ee1c4a1479b?w=1200&q=75') center/cover no-repeat;
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.6);
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
}

.footer-copy {
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img { max-height: 350px; }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
  section { padding: 2.5rem 1rem; }

  .hero h1 { letter-spacing: 3px; }
  .hero h1 .accent { letter-spacing: 1px; }
  .hero-badge { font-size: 0.6rem; padding: 0.4rem 1rem; letter-spacing: 2px; }
  .hero-sub { font-size: 0.9rem; line-height: 1.5; margin: 1rem 0 1.5rem; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; padding: 0.9rem 2rem; }

  .about-features { grid-template-columns: 1fr; }

  .menu-category { margin-bottom: 2rem; }
  .menu-category-header { margin-bottom: 1rem; padding-bottom: 0.5rem; }
  .menu-category-icon { width: 36px; height: 36px; font-size: 1.2rem; border-radius: 8px; }
  .menu-category-name { font-size: 1.15rem; }
  .menu-item { padding: 0.85rem 1rem; border-radius: 10px; gap: 0.6rem; }
  .menu-item-name { font-size: 0.9rem; margin-bottom: 0.15rem; }
  .menu-item-desc { font-size: 0.75rem; line-height: 1.4; }
  .menu-item-price { font-size: 1.1rem; }

  .drinks-banner { padding: 2.5rem 1rem; }
  .drinks-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .drink-card { padding: 1rem 0.75rem; border-radius: 10px; }
  .drink-icon { font-size: 1.5rem; }
  .drink-name { font-size: 0.8rem; }
  .drink-price { font-size: 1rem; }

  .section-header { margin-bottom: 2rem; }
  .section-tag { font-size: 0.65rem; }
  .section-title { font-size: 1.75rem; }

  .info-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .info-label { font-size: 0.7rem; }
  .info-value { font-size: 0.95rem; }

  .footer-links { flex-direction: column; gap: 0.75rem; }
  .footer-social a { width: 38px; height: 38px; }
}
