@font-face {
    font-family: 'ChampionGothic';
    src: url('../fonts/ChampionGothic-Lightweight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TitleFont';
    src: url('../fonts/font.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.hidden {
    display: none;
}

.visible {
    display: block;
    font-size: 0.8em;
}

html {
    scroll-behavior: smooth;
}


/* Estilos para el texto */
body.custom-body {
    font-family: 'ChampionGothic';
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 50px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 17px;
    color: #000;
}

@media (max-width: 1024px) {
   .marco-fijo-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Siempre arriba */
    
    /* Usamos tu imagen */
    background-image: url('../images/fondo.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
    /* TRUCO MAESTRO: Permite que el ratón "atraviese" el marco 
       para poder hacer scroll en el contenido de abajo */
    pointer-events: none; 
    }
    .marco-fijo-desktop {
        display: none;
    }
}
@media (min-width: 1025px) {
    .marco-fijo-mobile {
        display: none;
    }
    .marco-fijo-desktop {
        position: fixed;
        top: 0;
        width: 50vw;
        height: 100vh;
        z-index: 9999;
        background-image: url(../images/fondo.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        pointer-events: none;
    }
}




/*.main-content-wrapper{
    margin: 0;
    min-height: 100vh;
    border-style: solid;
    border-width: 60px 40px; 
    border-image-source: url('../images/fondo.png');
    border-image-slice: 61 fill; 
    border-image-repeat: round;     
    box-sizing: border-box;
}*/




/* PORTADA */


.post-header {
    max-width: 70%;
    margin: 20px auto 0px;
}



/* BIENVENIDOS */

#bienvenidos {
    text-align: center;
    padding: 10px;
}

.frase_personal{
    color: #000;
    text-align: center;
    padding: 20px 20px 20px 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
}


#bienvenidos h1 {
    color: #000;
    font-family: 'TitleFont', sans-serif;
    font-style: normal;
    font-size: 100px;
}

.bienvenidos-texto p {
    text-align: center;
    padding: 20px;
    padding: 10px;
    /* Ajusta el relleno según sea necesario */
}

.bienvenidos-texto img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

.cuenta-regresiva {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    color: #000;
    height: auto;
    gap: 12px;
}

@media only screen and (max-width: 767px) {
    .cuenta-regresiva {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 40px 20px 40px 20px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        color: #000;
        height: auto;
        gap: 12px;
    }
}

#dias, #horas, #minutos, #segundos {
    font-size: 3.5rem;
}

#dias, .unidadDia{
    color: #ec6067;
}

#horas, #minutos, .unidadHoras, .unidadMinutos{
    color: #53aadc;
}

#segundos, .unidadSegundos{
    color: #f9b13b;
}

.barra {
    font-family: sans-serif;
    font-size: 4rem;
    color: #000;
}

#cuenta-atras {
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.tiempo {
    display: grid;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

#itinerario {
    text-align: center;
    padding-left: 35%;
    padding-right: 35%;
    height: 590px;
}

@media (min-width: 767px) and (max-width: 1024px) {
    #itinerario {
        text-align: center;
        padding-left: 30%;
        padding-right: 30%;
        height: auto!important;
    }
}

@media (max-width: 767px) {
    #itinerario {
        text-align: center;
        padding-left: 20%;
        padding-right: 20%;
        height: auto!important;
    }
}


.itinerario-h1 {
    color: #000;
    font-family: 'TitleFont', sans-serif;
    font-style: normal;
    font-size: 100px;
    text-align: center;
}


#itinerario .timeline {
    position: relative;
    margin: 50px auto;
    text-transform: uppercase;
    border-collapse: collapse;
    width: fit-content;
    border: none;
  }
  td{
    padding: 20px 15px;
  }
  
  .event {
    position: relative;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
    border: none;
  }
  
  .event:before {
    content: '';
    position: absolute;
    left: -6px;
    top: 28px;
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
  }
  
  .event .time {
    width: 100px;
    color: #000;
    border: none;
  }
  
  .event .icon {
    padding: 20px 20px 20px 20px;
    border: none;
  }
  
  .event .icon img {
    width: 30px;
    height: 30px;
  }
  
  .event .description {
    font-size: medium;
    color: #555;
    white-space: nowrap;
    border: none;
    text-align: start;
  }
  
  .event .description:hover {
    color: #2c3e50;
    transition: color 0.3s ease;
  }
  
  /* Animation logic */
  .show {
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.separador{
    max-width: 75%;
    margin: 0 auto;
    text-align: center; /* centrar contenido en línea */
    padding-bottom: 12%;
}

.separador2{
    max-width: 90%;
    margin: 0 auto;
    text-align: center; /* centrar contenido en línea */
    padding-bottom: 11%;
    padding-top: 11%;
}

.separador3{
    max-width: 75%;
    margin: 0 auto;
    text-align: center; /* centrar contenido en línea */
    padding-bottom: 15%;
    padding-top: 15%;
}

.separador4{
    max-width: 75%;
    margin: 0 auto;
    text-align: center; /* centrar contenido en línea */
    padding-top: 14%;
    padding-bottom: 1%;
}

.separador img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.separador2 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.separador3 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


.separador4 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


/* LOCATION */

#general-information {
    text-align: center;
    padding: 20px;
}

#general-information h1 {
    color: black;
    font-family: 'TitleFont', sans-serif;
    font-size: 100px;
}

/* .information-texto p {
    text-align: center;
    padding: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
    color: white;
} */

.finca-image-container {
    position: relative;
    width: 70%;
    max-width: 500px;
    margin: 30px auto;
    overflow: hidden;
}


.finca-image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
}


.finca-image-container .information-texto {
    background-color: transparent;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    border: solid 1px #000;
}

.finca-image-container .information-texto a{
    color: #000;
    text-decoration: underline;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
}
.finca-image-container .information-texto a:hover{
    color: #000;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
}
.finca-image-container .information-texto p{
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
}


@media (max-width: 767px) {
    .finca-image-container {
        width: 90%;
    }

    .finca-image-container .information-texto {
        font-size: 16px;
    }
}


/* Google Maps */
#mapDiv {
    height: 300px;
    max-width: 90%;
    margin: 20px auto 40px;
}




/* ITINERARIO */

.timeline {
    position: relative;
    margin: 50px auto;
    padding-left: 40px;
    text-transform: uppercase;
    border-collapse: collapse;
    border: none;
    width: fit-content;
}

@media only screen and (max-width: 767px) {
    .timeline {
        position: relative;
        margin: 50px auto;
        padding-left: 40px;
        text-transform: uppercase;
        border-collapse: collapse;
        border: none;
        width: fit-content;
    }
}

.event {
    position: relative;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
    border: none;
}

.event:before {
    content: '';
    position: absolute;
    left: -6px;
    top: 29px;
    width: 12px;
    height: 12px;
    background-color: #868686;
    border-radius: 50%;
}

.event .time {
    width: 100px;
    border: none;
}

.event .icon {
    border: none;
    padding: 20px 20px 20px 20px;
}

.event .icon img {
    width: 30px;
    height: 30px;
}

.event .description {
    font-size: 1rem;
    color: #000;
    border: none;
}

.event .hidden {
    font-size: 1rem;
    color: #000;
    border: none;
}

.event .description:hover {
    color: #2c3e50;
    transition: color 0.3s ease;
}

/* Animation logic */
.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.itinerario img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

.element-crew {
    max-width: 3%;
}

.element {
    max-width: 4%;
}

@media only screen and (max-width: 767px) {
    .timeline {
        position: relative !important;
        padding: 0 !important;
        margin: 50px auto !important;
        text-transform: uppercase;
        border-collapse: collapse;
        border: none;
        width: fit-content;
    }
}

/* CONTACTO */
.rrss {
    width: 30px;
    /* Ancho del icono */
    height: auto;
    /* Altura del icono */
    margin-top: 8px;
}

.contacto p {
    margin: 0;
    /* Elimina el margen predeterminado del párrafo */
    text-align: justify;
}


@media (max-width: 767px) {
    .contacto {
        padding: 15px;
        display: inline-flex;
        flex-direction: column;
    }
}

.contacto-info {
    text-align: center;
    margin: 20px 0;
    padding-left: 0!important;
    padding-right: 0!important;
}

.contacto-info a {
    display: inline-block;
    background-color: transparent;
    /* Color característico de WhatsApp */
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 1px solid #000;
    width: 100%;
    text-transform: uppercase;
}

.contacto-info a:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    /* Más oscuro al pasar el ratón */
}


/* INFORMACIÓN DE INTERÉS */

#info_interes {
    text-align: center;
    padding: 30px 35px 0 35px;
}
@media only screen and (min-width: 768px) {
    #info_interes {
        text-align: center;
        padding: 30px 90px 20px 90px;
    }
}
#info_interes span {
    text-decoration: underline;
}
#info_interes b{
    font-weight: bold;
}
hr{
    background-color: #E0E0E0;
}

@media only screen and (max-width: 767px) {
    #info_interes {
        background-size: auto;
    }
}

#info_interes h1 {
    color: #000;
    font-family: 'TitleFont', sans-serif;
    font-size: 100px;
}

#info_interes h4 {
    color: #E0E0E0;
}

#info_interes p {
    text-align: justify;
    padding: 10px;
    color: #000;
    text-transform: uppercase;
}



.slider {
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}

.nav {
    background-color: #00000000;
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.nav.prev {
    left: 10px;
}

.nav.next {
    right: 10px;
}

.nav:focus {
    outline: none;
}




/* ASISTENCIA */

#asistencia {
    text-align: center;
    background-color: white;
}

#asistencia h1 {
    font-family: 'TitleFont', sans-serif;
    font-size: 100px;
    color: black;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

#asistencia p {
    text-transform: uppercase;
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}
.asistencia-texto{
    padding-left: 40px;
    padding-right: 40px;
}

.asistencia-texto span.fecha-limite{
    text-decoration: underline;
}

#mensaje-exito-modal{
    padding-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

/* Formulario */
.form-container-asist {
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

input[type=checkbox] {
    accent-color: #000;
}
#closeButton img,
#cerrar-modal img {
    max-width: 30px;
}

label {
    display: block;
    font-size: 18px;
    color: #333333;
    margin-top: 8px;
    text-transform: uppercase;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: #000;
    outline: none;
}

input::placeholder {
    color: #888888;
}

/* Radio buttons */
.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

input[type="radio"] {
    margin-right: 8px;
}

label[for="acompanadoNo"],
label[for="acompanadoSi"],
label[for="busNo"],
label[for="busSi"],
label[for="asisteSi"],
label[for="asisteNo"] {
    font-size: 14px;
    color: #555555;
}

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    z-index: 1000;
    width: max-content;
}

@media only screen and (max-width: 767px) {
    #popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        background-color: white;
        z-index: 1000;
        width: 350px;
    }
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.modal {
    display: none;
    /* Inicialmente oculto */
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Fondo oscuro semitransparente */
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}

.add-button,
.save-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}

.add-button:hover,
.save-button:hover {
    background-color: black;
}

.btn.btn-primary{
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Botón de enviar: Estilo Business */
button#submit,
button#addAcompananteButton,
button#guardarButton,
button#deleteAcompananteButton {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 0!important;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
}

#accompaniments-list {
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.acompanante .select_edad {
    align-items: center;
    max-height: 40px;
}

.acompanante input[type="text"], .acompanante input[type="tel"], .acompanante input[type="number"]
 {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    color: #3b3f30;
    transition: border-color 0.3s ease;
}

button#submit:hover,
button#addAcompananteButton:hover,
button#guardarButton:hover,
button#deleteAcompananteButton:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    /* Azul más oscuro para hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    /* Intensifica la sombra */
    transform: translateY(-2px);
    border-radius: 0!important;
    text-transform: uppercase;
    margin-top: 10px;
    /* Ligero levantamiento al hacer hover */
}

/* Responsivo */
@media only screen and (max-width: 767px) {
    .form-container-asist {
        max-width: 95%;
    }

    #asistencia h1 {
        font-size: 100px;
    }

    #asistencia p {
        font-size: 17px;
    }
}

/* CARROUSEL */

#carrousel {
    text-align: center;
    padding: 20px;
}

#carrousel h1 {
    font-family: 'TitleFont', sans-serif;
    font-size: 35px;
    color: black;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.carrousel-texto p {
    text-align: center;
    padding: 20px;
    padding: 10px;
    /* Ajusta el relleno según sea necesario */
}



.carousel-item img {
    height: auto;
    /* Ajusta la altura de las imágenes */
    max-width: 40%;
    object-fit: cover;
    /* Asegúrate de que las imágenes se escalen correctamente */
    margin: 0 auto;
}

.carousel-caption {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente para el texto */
    right: 33% !important;
    bottom: 20px;
    left: 33% !important;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
}


.carrousel-texto img {
    position: absolute;
    max-width: 7%;
    margin-top: -4%;
    margin-left: -22%;
    transform: rotate(-30deg);
}

@media only screen and (max-width: 767px) {
    .carousel-item img {
        height: 450px;
        /* Ajusta la altura de las imágenes */
        max-width: 100%;
    }

    .carousel-caption {
        right: 7% !important;
        left: 7% !important;
    }

    .carrousel-texto img {
        position: absolute;
        max-width: 15%;
        margin-top: -20%;
        margin-left: -43%;
        transform: rotate(-10deg);
    }
}



/* MÚSICA */

#musica {
    text-align: center;
    padding: 20px;
}

#musica h1 {
    color: black;
    font-family: 'TitleFont', sans-serif;
    font-size: 35px;
    letter-spacing: 2px;
}

.musica-texto p {
    text-align: justify;
    padding: 20px;
    padding: 10px;
}

/* REGALOS */

#regalos {
    text-align: center;
    padding: 50px 20px 20px 20px;
    color: #000;
    text-transform: uppercase;
}

#regalos h1 {
    color: #000;
    font-family: 'TitleFont', sans-serif;
    font-size: 100px;
    letter-spacing: 2px;
}

.regalos-texto p {
    text-align: center;
    padding: 50px 13px 10px 13px;
}

.plain-text {
    color: #000;
    background: none;
    font-size: large;
    font-weight: bold;
    padding: 0;
    margin: 0;
    text-align: center;
}

/* FOOTER */
.pre-footer {
    max-width: 100%;
    margin: 0 auto;
}





.footer-img {
    position: relative;
    max-width: 100%;
}

.footer-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

/* @media only screen and (max-width: 600px) {
    .pre-footer {
        max-width: 50%;
    }
} */

footer {
    background-color: transparent;
    padding: 10px;
    color: #000;
    border: solid 1px #000;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.footer-content p {
    text-align: center;
    font-weight: 200;
    text-transform: uppercase;
}

.footer_video{
    max-width: 100%;
}

.select_bebida,
.otros-acomp-container{
    padding-left: 0!important;
    padding-right: 0!important;
}

@media only screen and (max-width: 992px) {
    .pre-footer.mobile-img{
        max-width: 100%;
    }

    .pre-footer.desktop-img{
    display: none;
    }
}

@media only screen and (min-width: 992px) {
    .pre-footer.desktop-img{
        max-width: 100%;
    }
    .pre-footer.mobile-img{
        display: none;
    }
    body.custom-body{
        background-color: #E0E0E0!important;
    }
    header {
        padding-left: 25%;
        padding-right: 25%;
    }
    .main-content-wrapper {
        padding-left: 25%;
        padding-right: 25%;
        background-color: #E0E0E0!important;
    }
    #cuenta-atras {
        justify-content: center;
        align-items: center;
    }
    #asistencia p{
        text-align: center;
    }
    #regalos,
    #info_interes,
    #bienvenidos,
    #itinerario-completo,
    #general-information{
        background-color: #fff;
    }
    .footer_video {
        width: 100%;
        height: 1000px;
        background-color: white;
    }
    .regalos-texto p{
        text-align: center;
    }
}

#itinerario-completo{
    background-color: #fff;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    #regalos{
        padding-left: 115px;
        padding-right: 115px;
    }
}

#kahoot{
    background-color: #fff;
}

#kahoot h1{
    color: black;
    font-family: 'TitleFont', sans-serif;
    font-size: 100px;
    text-align: center;
    margin-bottom: 0;
}

#fotos{
    background-color: #fff;
    text-align: center;
}
#fotos p,
#fotos a{
    text-transform: uppercase;
}

#galeria{
    background-color: #fff;
    text-align: center;
}

#galeria h1{
    color: black;
    font-family: 'TitleFont', sans-serif;
    font-size: 100px;
    text-align: center;
}

.gallery-wrapper {
    padding: 10px 45px 20px 45px!important;
    max-width: 900px;
}

.v-item-container {
    margin-bottom: 30px; 
    width: 100%;
    transition: opacity 0.5s ease;
}

.v-card {
    position: relative;
    height: 120px;
    border-radius: 2rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: 
        height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        transform 0.4s ease;
    cursor: pointer;
}

.v-card.is-expanded {
    height: 500px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    cursor: default;
}

.v-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 1.2s ease, filter 0.8s ease;
}

.v-card.is-expanded .v-image-bg {
    transform: scale(1);
}

.v-content-overlay {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: white;
}

.v-title {
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: font-size 0.5s ease, margin 0.5s ease;
}

.is-expanded .v-title {
    font-size: 3rem;
    margin-bottom: 23rem;
}

.v-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
}

.is-expanded .v-description {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
    transition-delay: 0.2s;
}

.v-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    align-self: flex-start;
    transition: background 0.3s ease;
}

.is-expanded .v-badge {
    background: #4f46e5;
    border-color: transparent;
}

.v-item-container:not(.active-section) {
    opacity: 0.7;
}

.active-section {
    opacity: 1;
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: bold;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    pointer-events: none;
}

/* Floating audio control button */
.audio-btn {
    position: fixed;
    bottom: 20px;
    right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    border: none;
}

.audio-btn img {
    width: 20px;
}

.audio-btn:focus {
    outline: none;
}

.audio-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Hint text above audio button */
.audio-hint {
    position: fixed;
    bottom: 80px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 10000;
    cursor: pointer;
    animation: float 1.5s ease-in-out infinite;
    text-transform: uppercase;
    font-family: "ChampionGothic";
}

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

@media (max-width: 768px) {
    .img-titulo{
        max-width: 100%;
    }
}
small{
    color:#555555;
}

@media (min-width: 768px) and (max-width: 1023px) {
    #bienvenidos .img-titulo{
        max-width: 60%;
    }
    #info_interes .img-titulo{
        max-width: 80%;
    }
    #info_interes p{
        text-align: center;
    }
    .img-titulo{
        max-width: 70%;
    }
    .separador {
        max-width: 56%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 9%;
    }
    .separador2 {
        max-width: 78%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 10%;
    }
    .separador3 {
        max-width: 58%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 15%;
        padding-top: 14%;
    }
    .separador4 {
        max-width: 58%;
        margin: 0 auto;
        text-align: center;
        padding-top: 14%;
        padding-bottom: 5%;
    }
    .fecha_boda_img{
        max-width: 80%;
    }
    .event .description,
    .event .time {
        font-size: 1.2rem;
    }
    header img{
        max-width: 70%;
        margin-left: 15%;
    }
    #kahoot img{
        max-width: 80%;
        margin-left: 10%;
    }
    #fotos .text-center{
        padding-left: 8.5rem!important;
        padding-right: 8.5rem!important;
    }
    .gallery-wrapper {
        padding: 10px 45px 40px 45px !important;
    }
    p, a {
        font-size: 1.2rem!important;
    }
    .regalos-texto p {
        padding: 50px 105px 10px 105px;
    }
    .plain-text{
        font-size: x-large;
    }
}

@media (min-width: 1179px) and (max-width: 1366px) {
    #itinerario {
        text-align: center;
        padding-left: 28%;
        padding-right: 28%;
        height: 485px;
    }
    .regalos-texto p {
        padding: 50px 50px 10px 50px;
    }
    .gallery-wrapper {
        padding: 10px 60px 20px 60px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    #bienvenidos .img-titulo{
        max-width: 60%;
    }
    #info_interes .img-titulo{
        max-width: 100%;
    }
    #info_interes p{
        text-align: center;
    }
    #regalos .img-titulo{
        max-width: 80%;
    }
    .img-titulo{
        max-width: 70%;
    }
    .separador {
        max-width: 65%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 9%;
    }
    .separador2 {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 10%;
    }
    .separador3 {
        max-width: 65%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 15%;
        padding-top: 14%;
    }
    .separador4 {
        max-width: 65%;
        margin: 0 auto;
        text-align: center;
        padding-top: 14%;
        padding-bottom: 5%;
    }
    .fecha_boda_img{
        max-width: 80%;
    }
    #regalos{
        padding-left: 0;
        padding-right: 0;
    }
    .event .description,
    .event .time,
    p, a {
        font-size: 1.2rem!important;
    }
    .gallery-wrapper {
        padding: 10px 60px 20px 60px !important;
    }
    #fotos .text-center{
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
    .regalos-texto p{
        padding: 50px 105px 10px 105px;
    }
    .plain-text{
        font-size: x-large;
    }
}

@media (min-width: 1200px) {
    #bienvenidos .img-titulo{
        max-width: 45%;
    }
    #info_interes .img-titulo{
        max-width: 55%;
    }
    #info_interes p{
        text-align: center;
    }
    #regalos .img-titulo{
        max-width: 45%;
    }
    .img-titulo{
        max-width: 45%;
    }
        .separador {
        max-width: 35%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 9%;
    }
    .separador2 {
        max-width: 45%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 10%;
    }
    .separador3 {
        max-width: 35%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 15%;
        padding-top: 14%;
    }
    .separador4 {
        max-width: 35%;
        margin: 0 auto;
        text-align: center;
        padding-top: 14%;
        padding-bottom: 5%;
    }
    .fecha_boda_img{
        max-width: 50%;
    }
    #regalos{
        padding-left: 0;
        padding-right: 0;
    }
    header img{
        max-width: 65%;
        margin-left: 15%;
    }
    #kahoot img{
        max-width: 45%;
        margin-left: 28%;
    }
    #fotos a img{
        max-width: 45%;
    }
    .event .description,
    .event .time {
        font-size: 1.2rem;
    }
    #itinerario{
        height: 525px;
    }
    .gallery-wrapper {
        padding: 10px 80px 20px 80px !important;
    }
}

#songLinks::placeholder {
    color: #9ca3af; 
    opacity: 1; 
}

label[for="songLinks"]::after {
    content: " \25BC"; 
    margin-left: 0.25rem;
    font-size: 0.95em;
    font-weight: 900;
    color: inherit;
    display: inline-block;
    animation: songLinkArrowMove 1.2s ease-in-out infinite;
}

@keyframes songLinkArrowMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

.small, small{
    font-size: 78%!important;
}
