@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Romanesco&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Freeman&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Playfair+Display:wght@700&display=swap');


* {
    top: 0px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    list-style: none;
    text-decoration: none;
    background-color: transparent;
}


:root {
    --main-color: #800000;
    --text-color: #fff;
    --white-color: #F0E68C;
    --second-color: #9e9e9e;
    --dark-color: #212121;
    --da-vinci: #dab88b;
    --big-font: 4.5rem;
    --h2-font: 2.6rem;
    --p-font: 1.1rem;
}

.header-content-nav {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: rgba(48, 48, 48, 0.842);
    width: 100%;
    z-index: 1000;
    height: 80px;
    transition: height 0.4s ease, opacity 0.4s ease;
    margin: auto 0px;
}

.header-content-nav.scrolled {
    height: 65px;
    opacity: 0.9;
}

#logo img {
    width: 210px;
    margin-top: 4px;
    height: 65px;
}

.header-content-nav.scrolled #logo {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out;
}

/* Enlaces del header */
.header-content-nav-elementos {
    display: flex;
    width: 80%;
    justify-content: space-between;
}

.navList {
    display: flex;
    align-items: center;
}

.enlace {
    font-size: 15px;
    background: transparent;
    border: none;
    padding: 1em 1.5em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
    font-weight: 100;
    letter-spacing: 1px;
    font-family: 'Freeman';
}

.enlace::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--da-vinci);
    transition: 0.2s ease;
}

.enlace:hover::before {
    width: 100%;
}

.enlace::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: var(--bg-color);
    transition: 0.2s ease;
    z-index: -1;
}

/* Button principal del navbar */
#button-1 {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 3rem;
    border-radius: 1.5rem;
    background: var(--da-vinci);
    background-size: 400%;
    color: var(--other-color);
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#button-1 h3 {
    z-index: 100;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Freeman';
}

.button:hover::before {
    transform: scaleX(1);
}

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

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(82.3deg,
            rgb(255, 255, 255) 10.8%,
            rgb(255, 255, 255) 94.3%);
    transition: all 0.475s;
}

.navList {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    justify-content: flex-end;
}

.navList.responsive {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.navList.show {
    max-height: 500px;
    padding: 20px;
}

.header-content-nav-elementos #logo {
    display: inline-block;
    margin-left: 20px;
    transition: transform 0.3s ease-in-out;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;

}

.nav-toggle i {
    font-size: 24px;
}

#nav-toggle-text {
    font-size: 14px;
    color: white;
}

/* -------------- icono de user -------------  */
.user-pic {
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.sub-menu-wrap {
    position: absolute;
    top: 100%;
    right: 10%;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    z-index: 1000;
}

.sub-menu-wrap.open-menu {
    max-height: 400px;
}

.sub-menu {
    background: rgba(48, 48, 48, 0.842);
    padding: 10px;
    margin: 0;
}


.uer-info {
    display: flex;
    align-items: center;
}

.uer-info h3 {
    font-family: "Freeman";
    font-weight: 200;
    color: white;
    padding: 0px;
    margin: 0px;
}

.uer-info img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.sub-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: #CCC;
    margin: 15px 0 10px;
}

.sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 8px 0;
}

.sub-menu-link p {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.sub-menu-link span {
    font-size: 22px;
    transition: transform 0.5s;
    color: white;
    font-family: "freeman";
}

.sub-menu-link:hover span {
    transform: translateX(5px);
}

.sub-menu-link:hover p {
    font-weight: 600;
}

/*  ---------------------------- section 1: Inicio   ---------------------------- */

.section1-content-background {
    position: relative;
    background-image: url(carlos-aranda-iotdqC1hQic-unsplash.webp);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.section1-content-container {
    position: relative;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centra el contenido verticalmente */
    height: 110vh;
    margin-top: 20px;
}

.section1-content-container h4 {
    color: var(--dark-color);
    font-size: 40px;
    margin-top: 60px;
    margin-bottom: 20px;
    font-family: 'Romanesco';
    letter-spacing: 2px;
    text-transform: none;
}

.section1-content-container h1 {
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: none;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 150px;
    line-height: 1.2;
    margin-top: 0px;
    font-family: 'Herr Von Muellerhoff';
    letter-spacing: 2px;
}

.button2 {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 3rem;
    border-radius: 1.5rem;
    background-size: 400%;
    cursor: pointer;
    font-size: 15px;
    background: var(--dark-color);
    transition: background-color 0.4s ease, color 0.4s ease;
    /* border: 1px solid red; */
    margin-top: 225px;
}

#button-2 h3 {
    z-index: 100;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Freeman';
    color: white;
}

/*  ---------------------------- section 2: Reservar   ---------------------------- */

.section2-content {
    height: 100vh;
    margin-top: 80px;
    margin-bottom: 80px;
}

.container {
    display: flex;
    height: 100%;
}

.image-container {
    flex: 1;
    background-image: url('carlos-aranda-M7j4zXy57g4-unsplash.webp');
    background-size: cover;
    background-position: center;
}

.form-container {
    flex: 1;
    padding: 2rem;
    background-color: white;
}

.section3-content-background h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Great Vibes';
    color: var(--da-vinci) !important;
}

.contact-info h2,
.contact-form h2,
.registro-title h2,
.login-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Great Vibes';
    color: var(--dark-color) !important;
    /* border: 1px solid red; */
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],

.phone-input-group {
    display: flex;
    gap: 10px;
    font-size: 14px;
    width: 150px;
    /* border: 1px solid red; */

  }
  
  .phone-input-group select {
    width: 100px;
  }
  

  #phone {
    border: 2px solid #ccc; /* Cambia el color del borde */
    border-radius: 5px; /* Agrega bordes redondeados */
    padding: 5px; /* Añade algo de espacio interior */
  }
  
  
  .phone-input-group input[type="tel"] {
    flex-grow: 1;
    
  }

  

select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#tables {
    width: 31.5%;
    margin-bottom: 20px;
}

.observation {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 1rem;
    width: 35%;
}

input[type="number"][name="name"] {
    width: 100%; /* Hazlo más ancho */
    border: 1px solid #ccc; /* Asegura que tenga el mismo borde que otros inputs */
    padding: 8px; /* Ajusta el padding para mejor apariencia */
    border-radius: 5px; /* Aplica border-radius si otros inputs también lo tienen */
    box-sizing: border-box; /* Asegura que el ancho iconfirmRencluya padding y borde */
}

/* Ancho y estilo del input de fecha */
input[type="date"] {
    width: 100%; /* Cambia el ancho del campo de fecha */
    border: 1px solid #ccc; /* Aplica el mismo borde que otros inputs */
    padding: 8px; /* Ajusta el padding para alinearse con otros campos */
    border-radius: 5px; /* Aplica border-radius si otros inputs también lo tienen */
    box-sizing: border-box; /* Asegura que el ancho incluya padding y borde */
    color: #666; /* Color del texto dentro del input */
}
#date{
}



.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group label {
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

button {
    background-color: var(--da-vinci);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #9a7b5f;
}


/* #date {
    width: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
} */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#observation {
    width: 50%;
}

#observationToggle {
    cursor: pointer;
}

.form-group {
    display: flex;
    flex-direction: column;

}

#observation {
    width: 100%;
    display: none;
}

.checkbox-group {
    margin-top: 10px;

}







/* --------------------- section 3: Contacto ------------------------ */
#s3 {
    height: 100vh;

}

.section3-content-background {
    height: 35vh;
    background-image: url('fondo5_dif.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;


}

.section3-content-background h2 {
    color: var(--da-vinci);
    font-size: 80px;
    margin-top: 75px;

}


.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;

}

.contact-container p {
    font-size: 15px;
    color: #666;
    font-family: 'Freeman';
    text-transform: none;
}

.contact-info,
.contact-form {
    flex: 1;
    padding: 0 20px;
}

.contact-info h2 {
    font-size: px;
    margin-bottom: 20px;
    font-family: 'Great Vibes';
    font-weight: 100px;
    letter-spacing: 2px;
}

p {
    margin-bottom: 15px;
}

h4 {

    font-size: 12px;
    margin-top: 10px;
    color: #666;
    font-family: 'Freeman';
    text-transform: none;
    letter-spacing: 0.5px;
}

.social-icons {
    margin-top: 30px;
}

#ig,
#face,
#ws {
    font-size: 20px;
    color: var(--dark-color);
    padding: 0px 10px;
}
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-right: 15px;
}

.form-group:last-child {
    margin-right: 0;
}


#tableDescription {
    width: 100%;
    /* padding: 10px; */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;

}
#labelDescription{

}

#tables{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;

}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: vertical;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;

}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid #ccc;
}

.checkbox-container:hover input~.checkmark {
    background-color: #ccc;

}

.checkbox-container input:checked~.checkmark {
    background-color: #b08968;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.submit-btn {
    background-color: var(--da-vinci);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Freeman';
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.4s ease, color 0.4s ease;

}

.submit-btn:hover {
    background-color: var(--dark-color);
}

/* #tableDescription{
    border: 1px solid red;
    margin-left: -200px;
} */


#policy-txt {
    cursor: pointer;
}

#policy-txt2 {
    cursor: pointer;
    color: var(--da-vinci);
    margin-left: 20px;
}

#policy-help {
    color: red;
    margin-left: 20px;
    z-index: 100;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: var(--dark-color);
    margin: 5% auto;
    padding: 20px;
    /* border: 1px solid #b08968; */
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    color: #ffffff;
    /* margin-right: 500px; */
}

.modal-content h2 {
    font-family: Great Vibes;
    font-size: 50px;
    color: var(--da-vinci);
}

.close {
    color: #b08968;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #d4af37;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.modal h3 {
    color: #d4af37;
    margin-top: 20px;
    /* border: 1px solid red; */
    font-family: Freeman;
    font-weight: 200;
}

.modal ul {
    padding-left: 20px;
}

.modal-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#h2-modal2{
    color: var(--da-vinci) !important;
}
.checkmark.checked {
    
    background-image: url('check.png'); /* Imagen de palomita */
    background-size: cover;
    background-position: center;
  }
  

#policy-22 {
    color: var(--da-vinci);
}

.accept-btn {
    background-color: #b08968;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.accept-btn:hover {
    background-color: #d4af37;
}

#policy {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ----------- ws -------------------- */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
    margin-left: 180px;
    margin-bottom: 40px;
    transition: background-color 0.3s;
    font-family: Freeman;
  }
  
  .whatsapp-btn i {
    margin-right: 10px;
    font-size: 24px;
  }
  
  .whatsapp-btn:hover {
    background-color: #1EBE57;
  }

/* ------------------------- section 4: Ubicacion ----------------------- */

#s4 {
    height: 105vh;
    background-image: url(dark.webp);
    background-size: cover;
    background-position: center 50%;
    z-index: 100;

}

.visit-us {
    padding: 50px 0;

}

.container2 {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 20px;
    position: relative;
    z-index: 20;
    margin-top: 30px;

}


.visitanos {
    font-family: 'Great Vibes';
    font-size: 80px;
    color: var(--da-vinci);
}

.serif {
    font-family: 'Playfair Display', serif;
    color: var(--main-color);
    font-size: 36px;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.schedule {
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: var(--da-vinci);
    padding: 20px;
    border-radius: 5px;
}

.schedule h3 {
    font-family: 'Freeman';
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.schedule p {
    margin: 5px 0;
    font-family: 'Freeman';
    color: var(--dark-color);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 90%;
    border-radius: 15px;
}

.visitanos {
    margin-top: 30px;
    padding-left: 0px;
}

.serif {
    display: none;
}

.schedule {
    position: static;
    margin-bottom: 20px;
}

.button2 {

    position: relative;
    height: 3rem;
    padding: 0 3rem;
    border-radius: 1.5rem;
    background-size: 400%;
    cursor: pointer;
    font-size: 15px;
    background: var(--dark-color);
    transition: background-color 0.4s ease, color 0.4s ease;
    /* border: 1px solid red; */
    /* margin-top: 250px; */
}

#button-2 h3 {
    z-index: 100;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Freeman';
    color: white;
}



/* --------------------------- s6 catalogo ---------------------------*/
#s6 {
    height: 220vh;
    background-color: var(--dark-color);
    background-size: cover;
    background-position: center 50%;
    z-index: 100;
    border: 1px solid transparent;
}

#s6 h2 {
    font-size: 3.5rem;
    font-family: 'Great Vibes';
    color: var(--da-vinci) !important;
    /* border: 1px solid red; */
}

.container2-cat {
    max-width: 65%;
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
    /* border: 1px solid red; */

}

.carrusel-cat {
    /* border: 1px solid red; */
    margin-top: 50px;
}

.video-cat {
    /* border: 10px solid blue; */
    height: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #ffffff;
}

/* ------------------------ CARRUSEL ----------------------------- */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 80%;
    max-height: 10%;
    margin: 0 auto;
}

.carousel img {
    /* border: 1px solid red; */
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

.carousel-slide {
    flex: 0 0 100%;
    text-align: center;
    position: relative;
    /* Add this */

}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-slide h3 {
    position: absolute;
    top: 50%; /* Ajustamos para que quede centrado verticalmente */
    left: 50%;
    transform: translate(-50%, -50%); /* Centrado completo */
    font-size: 3.5rem;
    color: var(--da-vinci);
    margin: 0;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    font-family: 'Herr Von Muellerhoff', 'Freeman', 'Great Vibes';
}

.carousel-slide p {
    position: absolute;
    top: 60%; /* Ajuste relativo para que el texto esté por debajo del título */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* Optional: Add a dark overlay to make text more readable */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    /* Adjust this to control the overlay height */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Rest of the styles remain the same */

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    background-color: var(--dark-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    background-color: var(--da-vinci);
    color: var(--dark-color);
}

.carousel-button.prev {
    left: -30px;
    top: 50%;
    font-size: 30px;
}

.carousel-button.next {
    font-size: 30px;
    left: 95%;
    top: 50%;

}

@media (max-width: 768px) {
    .carousel-button {
        padding: 8px 12px;
        font-size: 16px;
    }

    .carousel-button.prev {
        font-size: 20px;
    top: 70%;


    }

    .carousel-button.next {
        font-size: 20px;
    top: 70%;

    }
}


/* Modal confirmacion */
.reservation-dialog {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.reservation-dialog-content {
    background-color: var(--dark-color);
    margin: 15% auto;
    padding: 20px;
    width: 550px;
    border-radius: 8px;
    text-align: center;
}

.reservation-dialog-content h2 {
    color: var(--da-vinci);
    margin-bottom: 20px;
    font-family: Great Vibes;
    font-size: 50px;
}

.reservation-dialog-content p {
    color: #ffffff;
    margin-bottom: 20px;
}

.reservation-dialog-buttons {
    display: flex;
    justify-content: space-around;
}

.btn-confirm-reservation,
.btn-cancel-reservation {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-confirm-reservation {
    background-color: #b08968;
    color: white;
}

.btn-confirm-reservation:hover {
    background-color: #9a7b5f;
}

.btn-cancel-reservation {
    background-color: #333;
    color: white;
}

.btn-cancel-reservation:hover {
    background-color: #555;
}

/* Modal confirmacion */
.error-message {
    color: #ff0000;
    font-size: 0.8em;
    margin-top: 5px;
}

.invalid {
    border-color: #ff0000;
}





/* ---------------------- video -------------------- */

.video-section {
    background-color: var(--dark-color);
    padding: 20px 0;
    position: relative;
    /* border: 1px solid green; */
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b08968, transparent);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(176, 137, 104, 0.2);
}

.main-video {
    width: 100%;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 500px;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    transition: color 0.3s ease;
}

.control-btn:hover {
    color: #b08968;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #b08968;
    border-radius: 2px;
    width: 0;
}

.video-description {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}

.video-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b08968;
    margin-bottom: 15px;
}

.video-description p {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* Icons */
.play-icon::before {
    content: '▶';
}

.pause-icon::before {
    content: '⏸';
    font-size: 20px;

}

.volume-icon::before {
    content: '🔊';
}

.muted-icon::before {
    content: '🔇';
}

.fullscreen-icon::before {
    content: '⤢';
}

@media (max-width: 768px) {
    .video-section {
        padding: 30px 0;
    }


    .video-description h2 {
        font-size: 2rem;
    }

    .video-description p {
        font-size: 1rem;
    }

    .video-controls {
        padding: 15px;
    }

    .control-btn {
        width: 30px;
        height: 30px;
    }

    .video-container {
        display: none;
    }

    .video-description {
        display: none;
    }

    #s6 {
        height: 80vh;
    }
}


/*  ---------------------------- login   ---------------------------- */

.login-bg {
    display: flex;
    height: 100%;
    margin: 60px;
    padding: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.background-login {
    background-image: url('carlos-aranda-iotdqC1hQic-unsplash.webp');
    position: relative;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;

}


.login-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    padding: 20px;
    background-color: rgba(238, 234, 234, 0.9);
    border-radius: 4%;
    box-shadow: #333;
}

.login-form-container p {
    color: black;
    margin-top: 15px;
}

.login-title {
    justify-content: center;
    align-items: center;
}

.login-form-container h2 {
    font-size: 3rem;
    text-align: center;
}

.login-container p {
    color: black;
}

.registro-container p {
    color: black;
}


/* V visible para la cedula en login-form*/

.cedula-input-container {
    position: relative;
    width: 100%;
}

.cedula-prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-color);
    font-weight: 800;
    z-index: 1;
}

.cedula-input-container input {
    width: 100%;
    padding: 10px 10px 10px 30px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}


.form-row-2 {
    width: 100%;
    max-width: 300px; /* or your desired width */
    margin: 0 auto 15px;
}

.form-group-2 {
    width: 100%;
}

#input2 {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/*  ---------------------------- Footer   ---------------------------- */
.footer {
    padding: 50px 0;
    background-color: rgba(48, 48, 48, 0.842);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-content>div {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-contenido {
    position: relative;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    background-color: var(--dark-color);
    color: #ffffff;
}

.Derechos {
    text-align: center;
}

.Derechos a {
    font-size: 16px;
    font-family: "Freeman";
    color: #ffffff;
}

.Derechos a:not(:last-of-type):after {
    content: "|";
    margin: 0 10px;
}

.politicas-terminos {
    text-decoration: none;
    line-height: 40px;
}

.empresa .social-icons a {
    min-height: 40px;
    display: inline-block;
    width: 40px;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all .5s ease;
}

.empresa p {
    font-family: "Freeman";
    color: white;
}

.link h3 {
    font-size: 16px;
    font-weight: 300;
    color: var(--da-vinci);
    font-family: 'Freeman';
    text-transform: uppercase;
    margin-bottom: 20px;
}

.link a,
p {
    font-family: 'Freeman';
    font-size: 16px;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.Derechos p {
    color: var(--second-color);
}


/*  ---------------------------- Registro  ---------------------------- */

.registro-bg {
    display: flex;
    height: 100%;
    margin: 60px;
    padding: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.background-registro {
    background-image: url('carlos-aranda-iotdqC1hQic-unsplash.webp');
    position: relative;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;

    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.registro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: 600px;
    padding: 20px;
    background-color: rgba(238, 234, 234, 0.9);
    border-radius: 4%;
    box-shadow: #333;

}

.registro-container p {
    margin-top: 15px;
}

.boton-registro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.form-registro {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.registro-title {
    display: flex;
    justify-content: center;
    align-items: center;

}

.registro-container h2 {
    font-size: 3rem;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 0;

}

.form-registro-row {
    display: flex;
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.form-registro-group {
    flex: 1;
}


/* ------------ telefono select ------------- */

.telefono-input-group {
    display: flex;
    width: 100%;
    gap: 8px;
}

.telefono-prefix {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: transparent;
    color: #333;
    font-size: 14px;
    width: 90px;
}

.telefono-input-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}



/* --- V en registro ---- */

.cedula-input-container {
    position: relative;
    width: 100%;
    padding-left: 30px;
 

}

.cedula-prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-weight: 500;
    z-index: 1;
}

.cedula-input-container input {
    width: 100%;
    padding: 10px 10px 10px 30px; /* Added left padding to accommodate the prefix */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Ensure other inputs maintain their styling */
.form-registro-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.cedula-prefix{
  

}



/* <!-- ------------------ Testimonios -----------------  --> */


.user-container {
    max-width: 1170px;
    margin: auto;
    padding: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .titulo {
    font-size: 80px;

    font-weight: 600;
    font-family: "Great Vibes";
    text-transform: capitalize;
    line-height: 1.2;
    color: var(--da-vinci);

}

.testimonials {
    padding: 100px 0;
    background-image: url(res_dif4.jpg);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;

}

.testimonials-item {
    background-color: var(--dark-color);
    padding: 30px;
    margin: 0;
    border-radius: 30px;

}

.testimonials .titulo {
    color: var(--dark-color);
    text-transform: none;

}

.testimonials-item .info {
    display: flex;
    align-items: center;

}

.testimonials-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-right: 20px;
    vertical-align: middle;

    max-width: 80px;
    max-height: 100px;
}

.testimonials-item .name {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.testimonials-item .job {
    text-transform: capitalize;
    color: gray;
    font-size: 12px;

}

.testimonials-item .rating {

    margin-top: 15px;
    font-size: 14px;
    color: hsl(36, 88%, 66%);
}

.testimonials-item p {

    margin-top: 20px;
    font-size: 18px;
    color: var(--second-color);
    text-transform: none;
}


.testimonials .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}

.testimonials .swiper-pagination-bullet {
    height: 12px;
    width: 12px;

}

/* ----------------------------------- ESTILOS RESPONSIVE FINALES ----------------------------------- */



@media (max-width: 768px) {
    .sub-menu-wrap {
        width: 100%;
        right: 0;
        padding: 0 20px;
    }

    .section-header .titulo {

        color: var(--da-vinci);
        font-size: 60px;
    }

    .contact-container {
        margin-bottom: 100px;
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        padding: 0;

    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #s4 {
        margin-top: 300px;
        height: 130vh;
    }

    .visitanos {
        margin-top: 30px;
        padding-left: 0px;

    }

    .serif {
        display: none;
    }

    .schedule {
        position: static;
        margin-bottom: 20px;
    }

    /*  SECTION 1 (BIENVENIDO) RESPONSIVE */
    .header-content-nav-elementos {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

    .header-content-nav-elementos #logo {
        margin: 0 auto;
    }

    .nav-toggle {
        display: flex;
        padding: 4px;
        position: absolute;
        right: 10px;

    }

    .navList {
        display: none;
    }

    .navList.responsive {
        display: flex;
        max-height: 0;
        padding: 0 20px;
    }

    .navList.show {
        max-height: 500px;
        padding: 20px;

    }

    .section1-content-container h4 {
        font-size: 40px;
        padding-top: 100px;
    }

    .section1-content-container h1 {
        font-size: 70px;
    }

    .button2 {
        margin-top: 50px;
        position: relative;
        overflow: hidden;
    }

    .image-container {
        display: none;

    }

    .section1-content-container h4 {

        font-size: 50px;
        margin-top: 40px;
    }


    .nav-toggle {
        display: flex;
        margin-top: 15px;


    }

    .form-container {
        padding: 1.5rem;
    }

    h2 {
        font-size: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .footer-content>div {
        max-width: 100%;
        text-align: center;
    }

    .empresa .social-icons {
        display: flex;
        justify-content: center;
    }

    .Derechos a {
        display: block;
    }

    .Derechos a:not(:last-of-type):after {
        content: "";
    }

    #tableDescription,#labelDescription  {
        width:100%;
        margin-left: -0px;
        
    }
    #tables{
        width: 80%;
    }
    .section2-content {
        height: 130vh;
        
    }

}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}