/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ========== HEADER ========== */
#site-header {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#site-header.scrolled {
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(123,45,59,0.08);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.cta-nav-btn {
  background: #7B2D3B;
  color: #FFF8F5;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-nav-btn:hover { background: #6b1a28; transform: translateY(-1px); }

/* Mobile menu */
#mobile-menu { animation: slideDown 0.3s ease; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #fce4e8;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-link:hover { color: #7B2D3B; padding-left: 0.5rem; }
.mobile-nav-link:last-child { border-bottom: none; }

/* ========== HERO ========== */
#hero { position: relative; }
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  opacity: 0;
  animation: heroImgIn 1.2s ease forwards;
}
@keyframes heroImgIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(74,10,24,0.88) 0%,
    rgba(123,45,59,0.78) 50%,
    rgba(74,10,24,0.92) 100%
  );
}
.hero-badge {
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title {
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-subtitle {
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-ctas {
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-stats {
  animation: fadeUp 0.8s ease 1s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(6px) rotate(45deg); }
  60% { transform: translateY(3px) rotate(45deg); }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #7B2D3B;
  color: #FFF8F5;
  font-weight: 800;
  padding: 0.875rem 2rem;
  border-radius: 1rem;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(123,45,59,0.3);
}
.btn-primary:hover {
  background: #6b1a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,45,59,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: #FFF8F5;
  border: 2px solid rgba(255,255,255,0.35);
  font-weight: 800;
  padding: 0.8125rem 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ========== SECTION HEADERS ========== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7B2D3B;
  background: #fce4e8;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #4a0a18;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem;
  color: #8a3a24;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== MARQUEE ========== */
.marquee-track { animation: marquee 25s linear infinite; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-text { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ========== MENU ========== */
.menu-card {
  background: #FFF8F5;
  border: 1px solid #fce4e8;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(123,45,59,0.1);
  border-color: #f9c3cc;
}
.menu-card-price { white-space: nowrap; }
.menu-img-wrap { position: relative; }
.menu-img { transition: transform 0.6s ease; }
.menu-img-wrap:hover .menu-img { transform: scale(1.03); }
.salsa-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fce4e8;
  color: #7B2D3B;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid #f9c3cc;
  transition: background 0.2s ease, transform 0.2s ease;
}
.salsa-chip:hover { background: #f9c3cc; transform: scale(1.05); }

/* ========== ABOUT ========== */
.about-img-grid { position: relative; }
.about-img-main { height: 400px; }
.about-img-main-inner { width: 100%; height: 100%; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  padding: 6px;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 16px 48px rgba(123,45,59,0.15);
}
.about-img-float-inner { width: 100%; height: 100%; }
.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #6e2c1c;
  margin-bottom: 1rem;
}
.about-feature {
  padding: 1rem;
  border-radius: 1rem;
  background: #FFF8F5;
  border: 1px solid #fce4e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-feature:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.08); }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; margin-top: 0.5rem; }

/* ========== VISIT ========== */
.visit-card {
  background: #FFF8F5;
  border: 1px solid #fce4e8;
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.visit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.08); }
.visit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #fce4e8;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== CONTACT FORM ========== */
.contact-form { transition: box-shadow 0.3s ease; }
.contact-form:hover { box-shadow: 0 12px 40px rgba(123,45,59,0.12); }
.form-label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  background: white;
  border: 2px solid #fce4e8;
  border-radius: 0.875rem;
  padding: 0.8rem 1rem;
  color: #4a0a18;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-input::placeholder { color: #c4633e; opacity: 0.5; }
.form-input:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 4px rgba(123,45,59,0.1);
}
.form-input:invalid:not(:placeholder-shown) { border-color: #e03f56; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D3B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-success { animation: fadeUp 0.5s ease; }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
  .about-img-float { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 1rem; }
  .about-img-main { height: 280px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .section-title { text-align: center; }
  .section-desc { text-align: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-img-main { height: 350px; }
}
