/* ── Custom Properties ── */
:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --cream-50: #fdfcf8;
  --cream-100: #fef9f0;
  --cream-200: #fdf0d5;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-700: #b45309;
}

/* ── Base & Typography ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
}

.font-outfit {
  font-family: 'Outfit', sans-serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* ── Navbar ── */
#navbar {
  background: rgba(253, 252, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(253, 252, 248, 0.95);
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.08);
}

/* ── Service Cards ── */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.15);
}

/* ── Testimonial Cards ── */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(4, 120, 87, 0.1);
}

/* ── Float Animation ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

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

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

/* ── Mobile Menu ── */
#mobile-menu {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Form Focus Styles ── */
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* ── Responsive Adjustments ── */
@media (max-width: 768px) {
  .font-playfair {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .font-playfair {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .font-playfair {
    font-size: 3.75rem;
  }
}
