@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #892486;
  --color-primary-dark: #6b0668;
  --color-secondary: #d0b47c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, .font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Honeypot field — hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 18s infinite;
}

/* First slide visible immediately */
.hero-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
  0% { opacity: 0; }
  3% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: heroZoom 6s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Carousel indicators */
.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: dotActive 18s infinite;
}

.carousel-dot:nth-child(1) { animation-delay: 0s; }
.carousel-dot:nth-child(2) { animation-delay: 6s; }
.carousel-dot:nth-child(3) { animation-delay: 12s; }

@keyframes dotActive {
  0% { background: rgba(255,255,255,0.4); }
  3% { background: var(--color-secondary); }
  30% { background: var(--color-secondary); }
  36% { background: rgba(255,255,255,0.4); }
  100% { background: rgba(255,255,255,0.4); }
}

/* Service cards hover */
.service-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(137, 36, 134, 0.15);
}

.service-card img {
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Fade in on scroll utility */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
