.confirmation-text {
    font-family: "Libre Baskerville", serif;
      font-weight: 700;
      font-style: normal;
      color: #1b4874;
}

.watermark {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           z-index: 9999;
           pointer-events: none; /* Evita que interfiera con los clics */
       }

       .watermark-text {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%) rotate(-30deg);
           font-size: 5rem;
           color: rgba(255, 0, 0, 0.2); /* Rojo con transparencia */
           font-weight: bold;
           white-space: nowrap;
           text-transform: uppercase;
           user-select: none; /* Evita que se pueda seleccionar */
       }

.my-5 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
}


p {
    font-family: "Libre Baskerville", serif;
      font-weight: 400;
      font-style: normal;
      color: #1b4874;
}

h1 {
    font-family: "Kaushan Script", serif;
      font-weight: 400;
      font-style: normal;
      color: #1b4874;
}
h2 {
    font-family: "Kaushan Script", serif;
      font-weight: 400;
      font-style: normal;
      font-size: 3em;
      color: #1b4874;
}

h3, h4 {
    font-family: "Libre Baskerville", serif;
      font-weight: 700;
      font-style: normal;
      color: #1b4874;
}

form {
    font-family: "Libre Baskerville", serif;
      font-weight: 700;
      font-style: normal;
      color: #1b4874;
}

.card {
    border-color: #91a6d3;
    border-radius:0px;
}

.form-control {
    border-color: #91a6d3;
    border-radius:0px;
    font-family: "Libre Baskerville", serif;
      font-weight: 400;
      font-style: normal;
      color: #1b4874;
}

.form-control:focus {
     border-color: #91a6d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(45, 166, 211);
}

.btn {
    font-family: "Libre Baskerville", serif;
      font-weight: 700;
      font-style: normal;
      border-radius: 0px;
      border-color: #1b4874;
      background-color: #1b4874;
}

.btn:hover {
      border-color: #91a6d3;
      background-color: #91a6d3;
}


.parallax h2 {
    font-family: "Libre Baskerville", serif;
      font-weight: 700;
      font-style: normal;
      color:white;
      font-size:2rem;
}

.parallax h3 {
    font-family: "Libre Baskerville", serif;
      font-weight: 400;
      font-style: normal;
      color:white;
}

.parallax h1 {

      color:white;
      font-size:6rem;
}


@media (max-width: 768px) {
            body {
               background-image: url('bgmobile.webp');
               background-size: contain;
            }
        }

         @media (min-width: 769px) {
            body {
                background-image: url('bg.webp');
                background-size: cover;
                background-attachment: fixed;
                background-position: center;
                background-repeat: no-repeat;
            }
        }

.footer {
    height: 300px;
    background-color:#1b4874;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-content {
     position: relative;
    z-index: 2;
    text-align: center;
    color: white; !important
    color:#ffffff;
}

.footer h1 {
    color:#ffffff;
  
}

.footer p, a{
    color:#ffffff;
   
}

 .parallax {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('parallax.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* En dispositivos móviles, desactivamos el efecto parallax */
        @media (max-width: 768px) {
            .parallax-bg {
                background-attachment: scroll;
                /* Ajustamos el posicionamiento para móvil */
                background-position: center center;
                transform: scale(1.1); /* Ligero zoom para evitar bordes blancos al hacer scroll */
            }
        }

        /* En desktop, activamos el efecto parallax */
        @media (min-width: 769px) {
            .parallax-bg {
                background-attachment: fixed;
            }
        }
        
        .parallax::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(27, 72, 116, 0.3);
            z-index: 1;
        }


/*.parallax {
    background-image: url('parallax.png');
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 72, 116, 0.6);
}*/

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white; !important
}

.scroll-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-btn:hover {
    color: #f8f9fa;
}

.scroll-btn i {
    font-size: 2rem;
    margin-top: 0.5rem;
}

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

.circular-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #f8f9fa;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.countdown {
    background: #f0fafc;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-radius: 0px;
     font-family: "Libre Baskerville", serif;
      font-weight: 400;
      font-style: normal;
      color: #1b4874;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1b4874;
}

.location-card {
    transition: transform 0.3s;
    color:#1b4874;
}

.location-card:hover {
    transform: translateY(-5px);
}

.quote {
    font-style: italic;
    font-size: 1.50rem;
    padding: 2rem;
    background: #f0fafc;
    border-left: 5px solid #dee2e6;
    font-family: "Libre Baskerville", serif;
    color: #1b4874;
    font-weight: 700;
}

hr {
     background-color: none;
    border: none;
    border-top: 5px dotted #1b4874;
    margin: 40px 0;
}

html {
    scroll-behavior: smooth;
}

iframe {
 max-width: 100%;
 height: 300px;
}