html {
  scroll-behavior: smooth;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
  }
}

.font-script {
  font-family: "Great Vibes", cursive;
}

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

.font-elegant {
  font-family: "Cormorant Garamond", serif;
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease-out forwards;
}

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

.animate-shimmer {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.112) 50%,
    transparent 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

.text-shadow {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.text-shadow-strong {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.365), 0 0 20px rgba(0, 0, 0, 0.6);
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.bg-overlay-light {
  background: rgba(255, 255, 255, 0.9);
}

.section-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.section-content {
  position: relative;
  z-index: 1;
}

.scroll-indicator {
  animation: float 2s ease-in-out infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.decorative-line {
  height: 2px;
  width: 100px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 1rem auto;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.367);
  
  border: 2px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.names-animation {
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
}

.no-kids-box {
  animation: glow 2s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(255, 215, 0, 0.2)
  );
  border: 3px solid #d4af37;
}

.bible-verse-bg::before {
  background: rgba(0, 0, 0, 0.7) !important;
}

hr{
  height:2px;border-width:0;color:gray;background-color:gray"
}