:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

body {
  font-family: 'Poppins', sans-serif;
}

.font-heading {
  font-family: 'Playfair Display', serif;
}

.site-header {
  background: transparent;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled {
    background: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-link {
  color: #D4AF37;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(42, 42, 42, 0.55), rgba(42, 42, 42, 0.25));
}

.section-title {
  font-family: 'Playfair Display', serif;
}

.whatsapp-fab {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 70 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9999px !important;
  background: #25d366 !important;
  color: white !important;
  font-weight: 600 !important;
  width: 80px !important;
  height: 80px !important;
  padding: 0 !important;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35) !important;
}

.whatsapp-icon {
  width: 44px !important;
  height: 44px !important;
  fill: currentColor !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.card-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(42, 42, 42, 0.12);
}

.scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.scroller::-webkit-scrollbar {
  height: 6px;
}

.scroller::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 9999px;
}
