:root {
  --cerise: #D42682;
  --cerise-light: #E851A0;
  --cerise-dark: #B01E6B;
}

/* Configuration Tailwind personnalisée */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Fonts */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* Couleur cerise personnalisée */
.text-cerise { color: var(--cerise); }
.bg-cerise { background-color: var(--cerise); }
.border-cerise { border-color: var(--cerise); }

/* Animations personnalisées */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bounce-slower {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  33% { 
    transform: translateY(-30px) rotate(120deg); 
  }
  66% { 
    transform: translateY(-60px) rotate(240deg); 
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes iconBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}

.animate-bounce-slower {
  animation: bounce-slower 4s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.whatsapp-pulse {
  animation: whatsappPulse 2s infinite;
}

.icon-bounce {
  animation: iconBounce 2s ease-in-out infinite;
}

/* Pattern background */
.bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D42682' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Navigation */
.nav-link {
  @apply text-gray-700 hover:text-cerise transition-colors font-medium relative;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cerise);
  border-radius: 1px;
}

.nav-link-modern {
  position: relative;
  color: #4b5563;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-link-modern:hover {
  color: #D42682;
  background: rgba(212, 38, 130, 0.05);
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D42682, #E851A0);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-modern:hover::after {
  width: 80%;
}

/* Buttons */
.btn-primary {
  @apply bg-cerise text-white px-8 py-4 rounded-full font-semibold hover:bg-cerise-dark transition-all duration-300 shadow-lg hover:shadow-xl transform hover:-translate-y-1 inline-flex items-center;
}

.btn-secondary {
  @apply border-2 border-cerise text-cerise px-8 py-4 rounded-full font-semibold hover:bg-cerise hover:text-white transition-all duration-300 inline-flex items-center;
}

.btn-modern-primary {
  background: linear-gradient(135deg, #D42682, #E851A0);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 38, 130, 0.3);
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 38, 130, 0.4);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #D42682, #E851A0);
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(212, 38, 130, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 38, 130, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #D42682;
  border: 2px solid rgba(212, 38, 130, 0.2);
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
  background: #D42682;
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 38, 130, 0.3);
}

/* Sections */
.section-title {
  @apply font-playfair text-4xl md:text-5xl font-bold text-gray-900 mb-4;
}

.section-subtitle {
  @apply text-lg text-gray-600 max-w-2xl mx-auto;
}

.section-title-modern {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #1f2937, #D42682);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-modern {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 3xl;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Decorative Elements */
.pastry-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.pastry-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
  filter: sepia(1) hue-rotate(300deg) saturate(2);
}

.pastry-icon:nth-child(even) {
  animation-direction: reverse;
  animation-duration: 10s;
}

.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  opacity: 0.03;
  pointer-events: none;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #D42682, transparent);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #E851A0, transparent);
  border-radius: 50%;
  bottom: 20%;
  left: 5%;
  animation: float 12s ease-in-out infinite reverse;
}

.triangle-1 {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 87px solid rgba(212, 38, 130, 0.05);
  top: 50%;
  left: 10%;
  animation: rotate 20s linear infinite;
}

.square-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(212, 38, 130, 0.05), transparent);
  top: 30%;
  right: 5%;
  animation: float 18s ease-in-out infinite;
  transform: rotate(45deg);
}

/* Hero Section */
.hero-gradient {
  background: linear-gradient(135deg, 
    rgba(212, 38, 130, 0.03) 0%, 
    rgba(232, 81, 160, 0.05) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(147, 51, 234, 0.03) 75%,
    rgba(212, 38, 130, 0.02) 100%);
  position: absolute;
  inset: 0;
}

.floating-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: bubbleFloat 20s infinite linear;
}

.bubble-1 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #D42682, transparent);
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #E851A0, transparent);
  left: 20%;
  animation-delay: 5s;
}

.bubble-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #D42682, transparent);
  left: 70%;
  animation-delay: 10s;
}

.bubble-4 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #E851A0, transparent);
  left: 80%;
  animation-delay: 15s;
}

.bubble-5 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #D42682, transparent);
  left: 50%;
  animation-delay: 8s;
}

/* Cards */
.product-card {
  @apply bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-2xl transition-all duration-300 transform hover:-translate-y-2;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.product-card:hover::before {
  left: 100%;
}

.product-card img {
  @apply w-full h-64 object-cover;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 38, 130, 0.1);
  transition: all 0.3s ease;
  margin: 0 1rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--cerise);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 38, 130, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 38, 130, 0.15);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #D42682, #E851A0);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Image Gallery */
.image-gallery {
  position: relative;
}

.main-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 38, 130, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.main-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.stat-card-1 {
  top: -2rem;
  right: -2rem;
  animation: float 6s ease-in-out infinite;
}

.stat-card-2 {
  bottom: -2rem;
  left: -2rem;
  animation: float 6s ease-in-out infinite reverse;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #D42682;
  text-align: center;
}

.stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

/* Category Filter */
.category-filter-btn {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 38, 130, 0.2);
  color: #6b7280;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.category-filter-btn:hover,
.category-filter-btn.active {
  background: linear-gradient(135deg, #D42682, #E851A0);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 38, 130, 0.3);
}

/* Social Links */
.social-link {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #D42682, #E851A0);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #B01E6B, #D42682);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 38, 130, 0.4);
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.online-indicator {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 1.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-info {
  padding: 2rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.modal-description {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Swiper Customization */
.swiper {
  padding: 20px 0 60px 0;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: var(--cerise) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--cerise) !important;
  background: white;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--cerise);
  color: white !important;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

/* FAQ */
.faq-item {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: var(--cerise);
  background: linear-gradient(135deg, transparent, rgba(212, 38, 130, 0.02));
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Form styling */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  ring-width: 2px;
  ring-color: #D42682;
  border-color: #D42682;
}

/* Utilities */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-section {
  transition: all 0.3s ease;
}

.product-section.hidden {
  display: none;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #10b981;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  border-left-color: #ef4444;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  .pastry-icon {
    font-size: 1.5rem;
    opacity: 0.03;
  }
  
  .section-title-modern {
    font-size: 2.5rem;
  }
  
  .category-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-width: 200px;
    justify-content: center;
  }
  
  /* Hero section mobile adjustments */
  #accueil {
    min-height: 100vh;
    padding-top: 5rem;
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    padding: 1rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  /* Statistics adjustments */
  .hero-content .grid {
    margin-top: 2rem;
    gap: 1rem;
  }
  
  .stat-counter {
    font-size: 1.5rem;
  }
  
  /* Floating elements size reduction */
  .floating-bubbles .bubble {
    width: 40px !important;
    height: 40px !important;
  }
  
  .bubble-1, .bubble-3, .bubble-5 {
    display: none;
  }
  
  /* Header spacing fix */
  header {
    padding: 0.75rem 0;
  }
  
  /* Decorative elements mobile adjustments */
  .pastry-icon {
    font-size: 1rem;
    opacity: 0.02;
  }
  
  /* Badge responsive */
  .hero-content .inline-flex {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 640px) {
  #accueil {
    padding-top: 6rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-content .grid {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .stat-counter {
    font-size: 1.25rem;
  }
  
  .hero-content .grid div div:last-child {
    font-size: 0.75rem;
  }
}

/* Header mobile improvements */
@media (max-width: 1024px) {
  header nav .container {
    padding: 1rem 1.5rem;
  }
  
  header .logo img {
    height: 2.5rem;
    width: 2.5rem;
  }
  
  header h1 {
    font-size: 1.25rem;
  }
  
  header p {
    font-size: 0.625rem;
  }
}

/* Animation improvements for mobile */
@media (max-width: 768px) {
  .animate-fade-in-up {
    animation-duration: 0.6s;
    animation-delay: 0.1s !important;
  }
  
  .animate-fade-in-up[style*="animation-delay: 0.4s"] {
    animation-delay: 0.2s !important;
  }
  
  .animate-fade-in-up[style*="animation-delay: 0.6s"] {
    animation-delay: 0.3s !important;
  }
  
  .animate-fade-in-up[style*="animation-delay: 0.8s"] {
    animation-delay: 0.4s !important;
  }
  
  .animate-fade-in-up[style*="animation-delay: 1s"] {
    animation-delay: 0.5s !important;
  }
}

/* Fix for spacing issues */
.hero-content > * + * {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-content > * + * {
    margin-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content > * + * {
    margin-top: 2rem;
  }
}
