:root {
  --color-gold: #C9A227;
  --color-cream: #FBF6EC;
  --color-navy: #1B2A4A;
  --color-earth: #6B4A2F;
  --color-falcon-red: #8B1E1E;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Mulish', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-navy);
}

h1, h2, h3, .font-heading {
  font-family: var(--font-heading);
}

/* Organic separator between sections: soft wave instead of a hard line */
.organic-separator {
  display: block;
  width: 100%;
  height: 48px;
  background: var(--color-cream);
}
.organic-separator svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Scroll-reveal base state; .is-visible is toggled by js/main.js */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift used on cards/buttons across the page */
.hover-lift {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.hover-lift:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(27, 42, 74, 0.18);
}

/* Warm overlay applied to community photos */
.photo-warm-overlay {
  position: relative;
}
.photo-warm-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.18), rgba(107, 74, 47, 0.12));
  pointer-events: none;
}

/* Floating WhatsApp button pulse */
@keyframes whatsapp-pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-pulse {
  animation: whatsapp-pulse-shadow 2.2s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-pulse {
    animation: none;
  }
}
