/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
select { 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='%238c1a30' stroke-width='2.5' 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 !important; }

/* ── Hero Gradient ────────────────────────────────── */
.hero-gradient {
  background: linear-gradient(135deg, #5c1321 0%, #8c1a30 25%, #a8223d 50%, #c4324f 75%, #e56070 100%);
}

/* ── Animations ───────────────────────────────────── */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}
@keyframes float-medium {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: .5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-blob-1 { animation: float-slow 8s ease-in-out infinite; }
.hero-blob-2 { animation: float-medium 6s ease-in-out infinite; }
.scroll-indicator { animation: scroll-bounce 2s ease-in-out infinite; }

/* ── Navbar ───────────────────────────────────────── */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(92, 19, 33, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: rgba(255,255,255,0.7);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Menu ──────────────────────────────────── */
#mobile-menu { animation: fade-up 0.25s ease; }
.mobile-link { border-radius: 0.5rem; padding-left: 0.5rem; }
.mobile-link:hover { background: rgba(255,255,255,0.08); border-radius: 0.5rem; padding-left: 1rem; }

/* ── Hero ─────────────────────────────────────────── */
#hero { position: relative; }

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  background: #fff; color: #8c1a30;
  font-weight: 700; font-size: 1rem;
  padding: 0.875rem 1.75rem; border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  background: #fff5f5;
}
.btn-secondary {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  font-weight: 700; font-size: 1rem;
  padding: 0.8125rem 1.75rem; border-radius: 9999px;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ── Badges & Titles ──────────────────────────────── */
.tag-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fce4e7, #f8c3ca);
  color: #8c1a30; font-weight: 700; font-size: 0.8125rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.tag-badge-light {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9); font-weight: 700; font-size: 0.8125rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; color: #2D1A19;
  line-height: 1.2;
}
.section-title-light {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; color: #fff;
  line-height: 1.2;
}

/* ── Soft Shadows ─────────────────────────────────── */
.shadow-soft { box-shadow: 0 4px 20px rgba(92,19,33,0.07), 0 1px 4px rgba(92,19,33,0.04); }

/* ── Gallery Grid ─────────────────────────────────── */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.gallery-item-1 { grid-row: span 2; }
.gallery-item-2 { grid-column: 1; }
.gallery-item-3 { grid-column: 1; }
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .gallery-item-1 { grid-row: span 2; }
  .gallery-item-2 { grid-column: 2; }
  .gallery-item-3 { grid-column: 2; }
}

/* ── Menu Cards ───────────────────────────────────── */
.menu-card-img { transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img { transform: scale(1.06); }

/* ── Feature Cards ────────────────────────────────── */
.backdrop-border { border: 1px solid rgba(255,255,255,0.08); }

/* ── Form ─────────────────────────────────────────── */
.input-field {
  background: #fff;
  border: 2px solid #fce4e7;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem; color: #2D1A19;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.input-field:focus {
  outline: none;
  border-color: #a8223d;
  box-shadow: 0 0 0 3px rgba(168,34,61,0.12);
}
.input-field::placeholder { color: #c4324f44; }

/* ── Reveal (progressive enhancement) ─────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive tweaks ────────────────────────────── */
@media (min-width: 768px) {
  .gallery-item-1 { grid-row: span 2; }
}
