/* =============================================================
   BOUNIE BREAD - Custom Styles
   Extracted from index.html
   ============================================================= */

/* Base Body Styles */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  background-color: #FAF6F0;
  color: #1F1A13;
}

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

/* Kustomisasi scrollbar untuk mendukung kesan elegan */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #FAF6F0;
}
::-webkit-scrollbar-thumb {
  background: #8C7853;
  border-radius: 10px;
}

/* Animasi Gulir (Scroll Animations) */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
