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

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

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #C0603A;
  color: white;
}

/* ===== HEADER ===== */
#header {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#header.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-blur-lg;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
  position: relative;
}

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

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

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C0603A;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #C0603A;
}

.cta-btn:hover {
  background: #a84e2e;
  border-color: #a84e2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 96, 58, 0.35);
}

.cta-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C0603A;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-small:hover {
  background: #a84e2e;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(192, 96, 58, 0.3);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1F1D1A;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(31, 29, 26, 0.2);
}

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

.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #C0603A;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-white:hover {
  background: #fdf0eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.menu-line {
  transition: all 0.3s ease;
}

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

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

#menuBtn.active .menu-line:nth-child(3) {
  width: 20px;
  margin-left: 0;
  transform: rotate(-45deg) translate(5px, -5px);
}

#mobileMenu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
}

/* ===== HERO ===== */
.hero-badge {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== MENU CARDS ===== */
.menu-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.15s; }
.menu-card:nth-child(3) { animation-delay: 0.2s; }
.menu-card:nth-child(4) { animation-delay: 0.25s; }
.menu-card:nth-child(5) { animation-delay: 0.3s; }
.menu-card:nth-child(6) { animation-delay: 0.35s; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== FORM STYLES ===== */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 3.5rem;
  }

  .feature-card, .menu-card {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 640px) {
  #hero h1 {
    font-size: 2.75rem;
  }

  .cta-btn, .cta-btn-outline, .cta-btn-white, .cta-btn-outline-white {
    padding: 12px 22px;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }

  .flex.flex-wrap.gap-4 .cta-btn,
  .flex.flex-wrap.gap-4 .cta-btn-outline {
    width: auto;
  }
}
