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

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAF7F2; /* Cream background */
  color: #1C1917; /* Espresso text */
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FAF7F2;
}

::-webkit-scrollbar-thumb {
  background: #8B5A2B;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #442C1D;
}

/* Custom fade-in animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Custom steam animation for visual wow-factor */
@keyframes steam {
  0% {
    transform: translateY(0) scale(1) translateX(0);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-10px) scale(1.1) translateX(2px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-20px) scale(1.2) translateX(-2px);
    opacity: 0;
  }
}

.steam-effect {
  animation: steam 3s infinite linear;
}

.steam-effect-delayed {
  animation: steam 3s infinite linear;
  animation-delay: 1.5s;
}

/* Subtle Hover zoom background */
.hover-zoom-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-zoom-parent:hover .hover-zoom-img {
  transform: scale(1.08);
}
