/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Scroll animations - Bouncy Spring Effect */
.section {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

/* Hide scrollbar */
::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: 'Poppins', sans-serif;
}

/* Update headers to use Poppins */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Warm shadow colors */
.shadow-warm {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

/* Rounded corners everywhere */
.rounded-organic {
  border-radius: 24px;
}

/* Playful hover effects */
.bounce-hover {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              box-shadow 0.3s ease;
}

.bounce-hover:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
}

/* Curved divider effect */
.section-divider {
  position: relative;
  margin-top: 60px;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  border-radius: 50% 50% 0 0;
}

/* Organic button styling */
button {
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

/* Form success message */
.form-success {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  50% {
    transform: translateY(5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
