/* Fuentes personalizadas */
.dancing-script {
  font-family: "Dancing Script", cursive;
}

.cormorant {
  font-family: "Cormorant Garamond", serif;
  color: #665151;
  font-weight: bold;
}

/* Gradiente de fondo principal */
.bg-gradient-pink {
  background: linear-gradient(
    135deg,
    #db7093 0%,
    #d7a9a9 25%,
    #f7bfd8 50%,
    #d7a9a9 75%,
    #db7093 100%
   
  );
}

/* Efecto de vidrio */
.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Animación flotante */
.floating {
  animation: float 9s ease-in-out infinite;
}

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

/* Animación de entrada con fade */
.fade-in {
  animation: fadeIn 8s ease-in;
}

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

/* Efecto de pulso rosa */
.pulse-pink {
  animation: pulsePink 3s infinite;
}

@keyframes pulsePink {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(228, 64, 148, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(244, 114, 182, 0.8);
  }
}

/* Dígitos del contador */
.countdown-digit {
  background: linear-gradient(135deg, #eaaeae, #db7093 );
  box-shadow: 0 10px 25px rgba(192, 105, 150, 0.3);
}

/* Animación de flores cayendo (cherry blossom) */
.cherry-blossom {
  animation: fallAndSway 15s infinite ease-in-out;
}

@keyframes fallAndSway {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive para pétalos en mobile */
@media (max-width: 768px) {
  .cherry-blossom svg {
    width: 0.75rem !important;
    height: 0.75rem !important;
  }

  /* Ocultar algunos pétalos en mobile para que no se vea tan cargado */
  .cherry-blossom:nth-child(3),
  .cherry-blossom:nth-child(5),
  .cherry-blossom:nth-child(7),
  .cherry-blossom:nth-child(9),
  .cherry-blossom:nth-child(11),
  .cherry-blossom:nth-child(13),
  .cherry-blossom:nth-child(15),
  .cherry-blossom:nth-child(17) {
    display: none;
  }
}

/* Ondas de música */
.music-wave {
  animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}

.music-wave.playing {
  animation: wave 0.6s ease-in-out infinite;
}

/* Botón de copiar */
.copy-button {
  transition: all 0.3s ease;
}

.copy-button:hover {
  transform: scale(1.05);
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f085ba, #db9eba);
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(251, 26, 138, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  animation: toastBounce 0.5s ease-out;
}

@keyframes toastBounce {
  0% {
    transform: translateX(-50%) translateY(100px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
  80% {
    transform: translateX(-50%) translateY(5px);
  }
  100% {
    transform: translateX(-50%) translateY(0px);
  }
}
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Asegura que el video cubra toda el área sin distorsión */
  z-index: -1; /* Envía el video al fondo si quieres poner cosas encima */
}
    

   