/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fdfcf9;
  color: #2d5429;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== NAV ========== */
#nav {
  background: rgba(253, 252, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58, 107, 53, 0.08);
  transition: box-shadow 0.3s ease;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(58, 107, 53, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3A6B35;
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3A6B35;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(58, 107, 53, 0.25);
}
.btn-primary:hover {
  background: #2d5429;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 107, 53, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #3A6B35;
  border: 1.5px solid rgba(58, 107, 53, 0.3);
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(58, 107, 53, 0.06);
  border-color: #3A6B35;
  transform: translateY(-2px);
}

/* ========== INPUTS ========== */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(58, 107, 53, 0.15);
  border-radius: 10px;
  background: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #2d5429;
  transition: all 0.25s ease;
  outline: none;
}
.input-field::placeholder { color: rgba(58, 107, 53, 0.35); }
.input-field:hover { border-color: rgba(58, 107, 53, 0.3); }
.input-field:focus {
  border-color: #3A6B35;
  box-shadow: 0 0 0 3px rgba(58, 107, 53, 0.1);
}

/* ========== MENU CARD ========== */
.menu-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(58, 107, 53, 0.08);
  box-shadow: 0 4px 20px rgba(58, 107, 53, 0.05);
  transition: all 0.4s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(58, 107, 53, 0.12);
  border-color: rgba(58, 107, 53, 0.15);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, #fdfcf9 0%, #f2f7f1 40%, #eef5e7 100%);
  position: relative;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(198, 217, 189, 0.5);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(230, 240, 220, 0.6);
  bottom: 0; left: 10%;
}
.blob-3 {
  width: 200px; height: 200px;
  background: rgba(114, 163, 95, 0.2);
  top: 30%; left: 5%;
}

/* ========== FLOATING CARDS ========== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

/* ========== FADE UP ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }

/* ========== SCROLL ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE MENU ========== */
.mobile-link {
  display: block;
  color: #2d5429;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(58, 107, 53, 0.08);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-link:hover { color: #3A6B35; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-blob { opacity: 0.3; }
  .blob-1 { width: 300px; height: 300px; }
  .blob-2 { width: 200px; height: 200px; }
  .blob-3 { display: none; }
}
