html {
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

body {
  margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+SA:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://use.typekit.net/fri4ezt.css");
@media (min-width:320px) {}

@media (min-width:480px) {
  /* smartphones, Android phones, landscape iPhone */
}

@media (min-width:600px) {
  /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
}

@media (min-width:801px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
}

@media (min-width:1025px) {
  /* big landscape tablets, laptops, and desktops */
}

@media (min-width:1281px) {
  /* hi-res laptops and desktops */
}

h4 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 25px;
  font-weight: bold;
  margin: 1%;
}

.titulos-secciones-black {
  font-family: 'Times New Roman', Times, serif;
  color: #141210;
  font-size: 2em;
  font-weight: lighter;
}

.titulos-secciones-white {
  font-family: 'Times New Roman', Times, serif;
  color: white;
  font-size: 2em;
  font-weight: lighter;
  text-shadow: #000 1px 1px 1px;
}

.titulos-secciones-gray {
  font-family: 'Times New Roman', Times, serif;
  font-optical-sizing: auto;
  color: #615B55;
  width: 100%;
  font-size: 200%;
  font-style: normal;
  font-weight: normal;
  margin: 0;
}

h3 {
  font-family: 'Times New Roman', Times, serif;
  color: gray;
  font-size: 25px;
  font-weight: bold;
  margin: 1%;
  text-shadow: 2px 2px 2px rgba(5, 5, 5, 0.2);
}

.general-text-black {
  font-family: "Comfortaa", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: black;
}

.general-text-white {
  font-family: "Comfortaa", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: white;
}

.general-text-gray {
  font-family: "Comfortaa", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: gray;
  margin: 0;
}

/*title cover starts*/
.titulo-h1-portada {
  font-family: 'Times New Roman', Times, serif;
  font-optical-sizing: auto;
  color: #bfbfbf;
  width: 100%;
  font-size: 200%;
  font-style: normal;
  font-weight: normal;
  margin: 0;
}

.titulos-portada {
  color: #000;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  /* El body ocupará toda la altura de la ventana */
  padding-top: 20%;
}

.header-contenido {
  background-image: url(/Recursos/Pareja/IMG_3584.jpeg);
  background-repeat: no-repeat;
  background-attachment: local;
  background-position: center;
  background-size: cover;
}

#nombres {
  font-family: "Times New Roman", Times, serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #BFBFBF;
  width: 100%;
  font-size: 200%;
  margin: 0;
  padding-bottom: 20%;
}


/*Title cover ends*/

/*Header boton de musica*/
.music-control:hover {
  background-color: #5a5a5a;
}

/* Asegurarse de que el contenedor esté visible y accesible */
.music-control {
  position: fixed;
  top: 20px;
  /* Coloca el botón 20px desde la parte superior */
  right: 20px;
  /* Lo coloca 20px desde la derecha */
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 30px;
  padding: 15px;
  cursor: pointer;
  z-index: 1000;
}

.music-control svg {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
  /* Agrega una transición suave */
}

.music-control.hidden {
  display: none;
  /* Se oculta cuando no se debe mostrar */
}

/* Ajustes para asegurar que el audio icono se vea bien en dispositivos móviles */
@media (max-width: 768px) {
  .music-control {
    top: 30px;
    /* Un poco más abajo en pantallas móviles */
    right: 20px;
    font-size: 25px;
    /* Ajuste para iconos más pequeños en móvil */
  }
}

.music-control:hover svg {
  transform: scale(1.1);
  /* Efecto de aumento al pasar el ratón */
}

.music-icon {
  width: 36px;
  height: 36px;
}

.hidden {
  display: none;
}

.vibrar {
  animation: vibrar 0.5s infinite;
}

@keyframes vibrar {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-2deg);
  }

  75% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#startMusicBtn {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  background-color: #ff6961;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  z-index: 999;
}




/*Comienza la personalización del contador*/
.numero {
  color: #707070;
}

.tiempo-content {
  text-align: center;
}

.tiempo {
  display: flex;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 35vh;
  margin: auto;
  max-width: 80%;
  font-family: "nueva-std", serif;
  font-weight: 700;
  font-style: normal;
}

.bloque {
  padding: 5%;
  font-style: italic;
  margin: auto;
}

.etiqueta {
  font-weight: bold;
  font-size: 100%;
}

.descripcion {
  padding-top: 5%;
}

.text-calendario-text {
  font-family: "nueva-std", serif;
  font-weight: 700;
  font-style: normal;
  color: #707070;
}

/*Image styling for calendar section*/
.calendario-img {
  margin-top: -120px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.descripcion-text {
  text-align: center;
  padding-top: 5%;
}

#calendario-text {
  padding: 2% 15%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.calendario {
  background-color: #DEDAD6;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.img-calendario-iniciales {
  width: 50px;
  height: 50px;
  align-items: center;
}

/* calendar button*/
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  gap: 4px;
  height: auto;
  width: auto;
  border: none;
  color: white !important;
  background: #707070;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
  text-decoration: none; /* Evita subrayado en Safari */
  -webkit-appearance: none; /* Remueve estilos por defecto en Safari iOS */
  -moz-appearance: none;
  appearance: none;
}

.label {
  line-height: 22px;
  font-size: auto;
  color: white !important;
  letter-spacing: 1px;
  font-weight: bold;
  font-family: "Comfortaa", serif;
  font-style: normal;

}

.button:hover {
  background: black;
}

.button:hover .svg-icon {
  animation: slope 1s linear infinite;
}

@keyframes slope {
  0% {}

  50% {
    transform: rotate(20deg);
  }

  100% {}
}

.save-the-date {
  width: 150px;
  height: 150px;
  display: block;
  margin: auto;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  text-align: center;
}

.popup-content {
  position: relative;
  padding-right: 30px;
}

.popup-content h3 {
  margin-bottom: 20px;
}

.popup .button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff5c5c;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
}

.popup .close-btn:hover {
  background-color: #ff0000;
}

/* Fondo oscuro detrás del popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Calendar button finish*/

/*Start rules section*/
.consideration-rules {
  text-align: center;
  padding-bottom: 10%;
  padding-top: 10%;
}


.boxes {
  margin: 0;
  display: flex;
  justify-content: center;
  /* Centra los elementos horizontalmente */
  align-items: flex-end;
  /* Alinea los elementos en la parte inferior */
  flex-wrap: wrap;
}

.rules {
  background-image: url(/Recursos/Pareja/IMG_3650.jpeg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.rules-vestimenta-img {
  height: 250px;
  width: 200px;
}


.rules-img {
  width: 100px;
}

.box {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  height: 400px;
  width: 300px;
  padding: 2%;
  margin: 2%;
  text-align: center;
  opacity: 0;
  /* Los divs empiezan invisibles */
  transform: translateY(50px);
  /* Comienzan desplazados hacia abajo */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#letraspequenas {
  font-size: 10px;
}

/* Clase para los divs que deben ser visibles */
.box.visible {
  opacity: 1;
  /* Se vuelve visible */
  transform: translateY(0);
  /* Se mueve a su posición original */
}

/*Empieza la sección de itinerario*/

.itinerario {
  background-color: #DEDAD6;
  height: auto;
  margin: 0;
}

.itinerario-texto {
  text-align: center;
  margin-bottom: 20px;
  margin: 0;
}

.itinerarios-boxes {
  width: 100%;
  /* Hace que el contenedor ocupe todo el ancho disponible */
  padding: 10px;
  /* Agrega algo de espacio alrededor */
  box-sizing: border-box;
}

.itinerario-column {
  list-style-type: none;
  padding: 0;
  margin: 10px;
  box-sizing: border-box;
  flex: 1 1 250px;
  /* Flexibilidad para que los elementos crezcan o se contraigan */
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  /* Esto pone los elementos (imagen y texto) en una fila */
  align-items: center;
  /* Alinea los elementos verticalmente al centro */
}

.ceremonia-img {
  width: 100px;
  /* Ajusta el tamaño de la imagen según el espacio */
  height: 125px;
  margin-right: 15px;
  /* Espacio entre la imagen y el texto */
  border-radius: 8px;
  /* Borde redondeado para la imagen */
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.ceremonia-box-separator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
  /* Espacio alrededor del separador */
  position: relative;
}

.ceremonia-box-separator::before {
  content: '';
  display: block;
  width: 10px;
  /* Tamaño del círculo */
  height: 10px;
  /* Tamaño del círculo */
  border-radius: 50%;
  /* Forma circular */
  background-color: #fff;
  /* Color del círculo */
}

.ceremonia-box-separator::after {
  content: '';
  display: block;
  width: 100%;
  /* La línea ocupará el 100% del ancho disponible */
  height: 2px;
  /* Grosor de la línea */
  background-color: #fff;
  /* Color de la línea */
}

.ceremonia-box-timeline {
  height: 100px;
  width: 125px;
  text-align: center;
  align-content: center;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
  .itinerarios-boxes {
    flex-direction: column;
    /* Cambia la dirección a columna en pantallas pequeñas */
    align-items: flex-start;
  }

  .itinerario-column {
    flex: 1 1 100%;
    /* Los elementos ocuparán todo el ancho disponible en pantallas pequeñas */
    max-width: 100%;
    /* Los elementos pueden ocupar el 100% del ancho en pantallas pequeñas */
    display: flex;
    flex-direction: column;
    /* Los elementos (imagen y texto) se apilan en columna */
    align-items: center;
    /* Centra los elementos (imagen y texto) */
    margin: 10px 0;
    /* Da un pequeño margen vertical entre los elementos */
  }

  .ceremonia-box-zoom {
    display: flex;
    align-content: center;
  }

  .ceremonia-img {
    margin-right: 15px;
    /* Espacio entre la imagen y el texto */
    margin-bottom: 10px;
    /* Agrega espacio entre imagen y texto en pantallas pequeñas */
    width: 150px;
    /* Ajusta el tamaño de la imagen para pantallas pequeñas */
  }

  .ceremonia-box-timeline {
    flex-direction: row;
    /* Dispone el texto en fila junto a la imagen */
    justify-content: flex-start;
    /* Alinea el texto a la izquierda */
  }
}

/*Imagen de anillo de compromiso*/

.img-anillo-compromiso {
  width: 100%;
}

/*Sección itinerario boxes*/

#titulo-itinerario {
  text-align: center;
}

.itinerario-boxes {
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  align-content: center;
}

.itinerario-box-fecha {
  background-color: #B0AC9D;
  text-align: center;
  padding: 2%;
  border-radius: 50px;
  border: solid #707070 2px;
  margin: 5%;
  width: fit-content;
}

.Itinerario-box {
  border: solid black 1px;
  border-radius: 5%;
  margin: 5%;
  text-align: center;
}

.img-itinerario-box {
  width: 250px;
  height: 250px;
  border-radius: 10%;
}

/* Sección galeria de fotos*/
.galeria-fotos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* Ocupa todo el ancho de la pantalla */
  background-color: #f0f0f0;
}

.galeria-boxes {
  display: flex;
  flex-direction: row;
  /* Alinea las imágenes horizontalmente */
  width: 100%;
  /* Asegura que las imágenes ocupen todo el ancho disponible */
  height: 100%;
  /* Asegura que las imágenes ocupen toda la altura de la pantalla */
}

.img-galeria-fotos {
  flex: 1 1 0;
  /* Permite que las imágenes se ajusten al 100% del ancho */
  width: 25%;
  /* Cada imagen ocupará el 25% del ancho disponible */
  height: 200px;
  /* Las imágenes tendrán una altura que ocupa el 100% de la pantalla */
  border: solid black 1px;
}

/*Mesa de regalos section*/

.mesa-regalos {
  background-image: url(/Recursos/Pareja/IMG_3615.jpeg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.mesa-regalos-titulo {
  text-align: center;
  padding: 5% 5%;
}

.button-mesa-regalos {
  text-align: center;
  padding: 15%;
}

.box1-mesa-regalos {
  align-content: center;
}

/*Padres Padrinos section*/
#titulo-padrinos {
  text-align: center;
  margin: 0;
  padding-top: 5%;
}

#texto-padrinos {
  text-align: center;
}

/*DOM padrinos*/

.padrespadrinos {
  text-align: center;
  padding: 0% 10%;
  padding-top: 5%;
}

#galeria {
  padding-top: 0%;
}

.splide {
  padding: 5%;
}

.splide__track li {
  padding: 5%;
}

.splide__track {
  padding: 5%;
  padding-left: 10%;
}

.splide_list {
  padding-left: 10%;
}

.splide__slide {
  text-align: center;
  justify-content: space-between;
}

.img-padrespadrinos {
  height: 200px;
  width: 130%;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.img-padrespadrinos:hover {
  transform: scale(1.2);
  border-radius: 30px;
  transition: 1s;
  border: solid black 1px;
}

.padrespadrinos-section {
  background-image: url(/Recursos/Recursos/Fondo.jpg);
  background-repeat: no-repeat;
}

.imagenes-padrinos-titulo {
  background-color: #B0AC9D;
  border: solid #707070 1px;
  border-radius: 20px;
  padding: 5%;
  align-content: center;
  height: 50px;
  margin-top: 10%;
}

/* Secciónn recepción y misa*/
.recepcion-misa {
  background-color: #DEDAD6;
  padding: 5%;
}

.ceremonia-religiosa {
  display: flex;
  margin-top: 5%;
}

.imagenes {
  width: 90%;
}

.recepcion {
  display: flex;
}

.texto-negritas {
  font-weight: bold;
  color: #707070;
  font-size: large;
}

.ceremonia-box-recepcion {
  width: 100%;
}

/* Generación de QR de invitaciones */
#resaltar {
  font-weight: bold;
  color: red;
}

.generadorqr-section {
  background-image: url(/Recursos/Recursos/Fondo.jpg);
  background-repeat: no-repeat;
  text-align: center;
}

.content {
  background-color: white;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin: auto;
}

#inviteCode {
  font-family: "Comfortaa", serif;
  font-size: 2vw;
  color: #fff;
  background-color: rgb(28, 28, 30);
  box-shadow: 0 0 .4vw rgba(0, 0, 0, 0.5), 0 0 0 .15vw transparent;
  border-radius: 0.4vw;
  border: none;
  outline: none;
  padding: 1vw 0.6vw;
  min-width: 190px;
  max-width: 250px;
  transition: .4s;
}

#inviteCode:hover {
  box-shadow: 0 0 0 .15vw rgba(135, 207, 235, 0.186);
}

#inviteCode:focus {
  box-shadow: 0 0 0 .15vw skyblue;
}

.form-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.form-container-center {
  text-align: center;
}

.invitees-list {
  margin-top: 20px;
}

.qr-container {
  margin-top: 10px;
}

.download-link {
  display: block;
  margin-top: 10px;
  color: #0066cc;
  text-decoration: none;
}

.qr-image-container {
  padding: 20px;
  border: 1px solid #ddd;
  margin-top: 20px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-button {
  display: none;
  margin-top: 20px;
}

.invitees-list li {
  list-style: none;
  text-align: justify;
}

/*Sección de gracias y lugares de hospedaje*/

.hospedaje-detalle {
  display: flex;
}

