*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-x: hidden;
}

/* ── Navbar ── */
#navbar {
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(253, 246, 236, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d94422;
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* ── CTA Buttons ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d94422;
  color: #fff;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.75rem 1.75rem;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.cta-btn:hover {
  background: #c43016;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 68, 34, 0.35);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0.75rem 1.75rem;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.cta-btn-outline:hover {
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero-gradient {
  background: linear-gradient(135deg, #a42413 0%, #d94422 30%, #e55a3d 55%, #e8a844 100%);
}

.hero-pattern {
  pointer-events: none;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Floating Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(5deg); }
}

@keyframes float-delay {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-5deg); }
}

.hero-float-1 { animation: float 4s ease-in-out infinite; }
.hero-float-2 { animation: float-delay 5s ease-in-out infinite; }
.hero-float-3 { animation: float 4.5s ease-in-out infinite 0.5s; }
.hero-float-4 { animation: float-delay 5.5s ease-in-out infinite 1s; }

/* ── Tag / Eyebrow ── */
.tag {
  display: inline-block;
  background: linear-gradient(135deg, #fad8cc, #f5d99a);
  color: #862013;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
}

/* ── Menu Cards ── */
.menu-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.menu-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.menu-card-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
}

/* ── About ── */
.about-img-main {
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-float {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ── Visit Cards ── */
.visit-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.visit-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.visit-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
}

/* ── Form ── */
.input-field {
  background: #fff;
  border: 2px solid #f0e6d6;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #292524;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.input-field::placeholder {
  color: #a8a29e;
}

.input-field:focus {
  border-color: #e55a3d;
  box-shadow: 0 0 0 4px rgba(229, 90, 61, 0.1);
}

/* ── Scroll Reveal ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Menu ── */
#mobileMenu {
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

#mobileMenu.open {
  max-height: 300px;
  opacity: 1;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0e6d6;
}

.mobile-link:last-child {
  border-bottom: none;
}

.menu-bar {
  transition: transform 0.3s, opacity 0.3s;
}

#menuToggle.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menuToggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

#menuToggle.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-float-1, .hero-float-2, .hero-float-3, .hero-float-4 {
    display: none;
  }

  .about-img-float {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    display: inline-flex;
  }

  .about-img-main {
    border-radius: 1.5rem;
  }
}
