/* Custom styles for Sweet Delights Bakery */

/* Font settings */
body {
  font-family: "Poppins", sans-serif;
}

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

/* Custom colors */
.text-brown-900 {
  color: #4b3621;
}

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

/* Transitions */
.transition {
  transition: all 0.3s ease;
}

/* Custom hover effects */
.hover\:transform:hover {
  transform: scale(1.05);
}

/* Custom shadows */
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Order Now button animation */
.nav-cta {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(217, 119, 6, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}
