html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Subtle fade-up animation for sections */
.fade-up-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Optional soft glow for primary buttons */
.btn-glow {
  box-shadow: 0 0 20px rgba(196, 139, 141, 0.4);
}
