/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; }

/* ── Navigation ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav-fixed.scrolled {
  box-shadow: 0 4px 30px rgba(5, 150, 105, 0.08);
}
.nav-link {
  color: #065f46;
  font-size: 0.938rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #059669; }
.nav-link:hover::after { width: 100%; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #059669;
  color: #fff;
  font-weight: 600;
  font-size: 0.938rem;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}
.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #059669;
  font-weight: 600;
  font-size: 0.938rem;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  border: 2px solid #059669;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-2px);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #059669;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── Hero Blobs ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: #d1fae5;
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: #fef3c7;
  bottom: 5%;
  left: -5%;
  animation-delay: -3s;
}
.blob-3 {
  width: 300px;
  height: 300px;
  background: #a7f3d0;
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Card Floats ── */
.card-float {
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card-1 { animation-delay: 0s; }
.hero-card-2 { animation-delay: -1.5s; }
.hero-card-3 { animation-delay: -3s; }
.hero-card-4 { animation-delay: -4.5s; }
.hero-badge { animation-delay: -2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Card Images ── */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-img-wrapper:hover .card-img {
  transform: scale(1.08);
}

/* ── Menu Cards ── */
.menu-card {
  background: #fff;
  border-radius: 20px;
  padding: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(5, 150, 105, 0.06);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(5, 150, 105, 0.12);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.813rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.tag:hover {
  background: #d1fae5;
}

/* ── Gallery Items ── */
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.15);
}

/* ── Input Fields ── */
.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.938rem;
  font-family: inherit;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.2s ease;
  outline: none;
}
.input-field:focus {
  border-color: #10b981;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.input-field::placeholder { color: #9ca3af; }

/* ── Scroll Reveal ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Scroll Indicator ── */
.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(5, 150, 105, 0.3);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 8px); opacity: 0.6; }
}

/* ── Prose Custom ── */
.prose-custom p + p { margin-top: 1em; }

/* ── Mobile Menu ── */
.mobile-menu {
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-link {
  color: #065f46;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.2s ease;
}
.mobile-menu-link:hover { color: #059669; }

/* ── Responsive ── */
@media (max-width: 767px) {
  h1 { font-size: 2.75rem !important; }
  .hero-card-2, .hero-card-3 { margin-top: 0 !important; }
}

@media (min-width: 768px) {
  h1 { font-size: 3.5rem !important; }
}

@media (min-width: 1024px) {
  h1 { font-size: 4rem !important; }
}
