/* ── 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 { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.section { position: relative; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6B6B;
  background: #FFF0EE;
  border: 1px solid #FFD6D0;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
}
.tag-light {
  color: #FF856E;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FF6B6B;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #E85555;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,107,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #27272A;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  border: 2px solid #E8E8EC;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: #FF6B6B;
  color: #FF6B6B;
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #FF6B6B;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── Form ── */
.label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3F3F46;
  margin-bottom: 0.375rem;
}
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E8E8EC;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1C1C1F;
  background: #FAFAFA;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
.input:focus {
  border-color: #FF6B6B;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}
.input::placeholder { color: #A1A1AA; }
.success-message { animation: fadeIn 0.3s ease; }

/* ── Navigation ── */
.nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.95);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B6B;
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu */
.mobile-menu { animation: slideDown 0.3s ease; }
.mobile-link { padding: 0.5rem 0; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #FFF8F7 0%, #FFF0EE 40%, #F5F5F7 100%);
  min-height: 100vh;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(255,107,107,0.12);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(255,133,110,0.1);
  bottom: -50px; left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 200px; height: 200px;
  background: rgba(255,181,160,0.15);
  top: 40%; left: 45%;
  animation: float 6s ease-in-out infinite;
}
.hero-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.12);
}
.hero-img {
  transition: transform 0.6s ease;
}
.hero-img-wrapper:hover .hero-img {
  transform: scale(1.03);
}
.hero-float-card {
  position: absolute;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}
.float-1 {
  bottom: 12%;
  left: -12%;
  animation-delay: 0s;
}
.float-2 {
  top: 10%;
  right: -8%;
  animation-delay: 2s;
}
.scroll-indicator { animation: fadeInUp 1s ease 1.5s both; }

/* ── Food Cards ── */
.food-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #F0F0F4;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: #FFD6D0;
}
.food-card-img {
  height: 200px;
  overflow: hidden;
}
.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-card-img img {
  transform: scale(1.08);
}
.food-card-body { padding: 1.25rem; }
.food-card-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF6B6B;
  margin-bottom: 0.375rem;
}
.food-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #1C1C1F;
  margin-bottom: 0.5rem;
}
.food-card-desc {
  font-size: 0.875rem;
  color: #71717A;
  line-height: 1.6;
}
.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid #F5F5F7;
}
.food-card-price {
  font-size: 0.8125rem;
  color: #A1A1AA;
  font-weight: 500;
}
.food-card-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #FFF0EE;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.food-card:hover .food-card-arrow {
  background: #FF6B6B;
  transform: rotate(-45deg);
}
.food-card:hover .food-card-arrow svg { stroke: #fff; }
.food-card-arrow svg { stroke: #FF6B6B; transition: stroke 0.2s; }

/* Category tabs */
.cat-btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  color: #71717A;
  background: #F5F5F7;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.cat-btn:hover { color: #FF6B6B; background: #FFF0EE; }
.cat-btn.active {
  color: #fff;
  background: #FF6B6B;
  border-color: #FF6B6B;
}

/* ── Gallery ── */
.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-img {
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

/* ── About pattern ── */
.about-bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 32px 32px;
}

/* ── CTA pattern ── */
.cta-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.3) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF6B6B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,107,0.4);
  transition: transform 0.2s, opacity 0.3s;
  z-index: 40;
}
.back-to-top:hover { transform: scale(1.1); }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero-image { order: -1; }
  .hero-float-card { display: none; }
  .blob-1 { width: 300px; height: 300px; }
  .blob-2 { width: 200px; height: 200px; }
}
@media (max-width: 639px) {
  .hero-content h1 { font-size: 2.75rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .food-card-img { height: 160px; }
}
