/*header*/
nav {
    height: 5rem;
    background-color: black;
    font-family: 'Playfair Display', serif;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    color: rgb(255, 255, 255);
}

nav .foto1 {
    width: 4rem;
    height: 4rem;
}

nav .foto2 {
    width: 8rem;
    height: 4rem;
}

.Idioma {
    justify-content: left;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}
 

@media only screen and (min-width: 601px) {
    .SeccionNav a {
        display: inline;
    }
    .navbar-toggler {
        display: none; 
    }
}


@media only screen and (max-width: 600px) {
    nav .foto1 {
        width: 2.5rem;
        height: 2.5rem;
    }

    nav .foto2 {
        width: 5rem;
        height: 2.5rem;
    }

    .SeccionNav a {
        display: none;
    }
    
    .navbar-toggler {
        display: inline;
    }
}

.dropdown-menu{
    background-color: transparent; 
    border: none;
    box-shadow: none; 
}

.offcanvas .dropdown-toggle {
    color: black !important; 
}


/*formulario de reserva*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

/* Botón de cierre */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Contenedor para la imagen y el formulario */
.popup-container {
    display: flex;
    width: 100%;
}

/* Sección de la imagen */
.popup-image {
    width: 33.33%;
    height: 100%;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sección del formulario */
.popup-form {
    width: 66.67%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Fondo blanco con transparencia */
}

/* Estilo del formulario */
.popup-form h2 {
    margin-bottom: 15px;
    color: #333;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.popup-form textarea {
    height: 80px;
}

/* Botones del formulario */
.form-buttons {
    display: flex;
    justify-content: space-between;
}

.form-buttons button,
.form-buttons a {
    width: 48%;
    padding: 10px;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.form-buttons button:hover,
.form-buttons a:hover {
    background-color: #0056b3;
}



.btn {
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
}

.btn-success {
    background-color: #28a745;
}


nav .foto1{
    width: 4rem;
    height: 4rem;
}


nav .foto2{
    width: 8rem;
    height: 4rem;
}

nav .nav-link{
    color: white;
}

nav .navbar-brand{
    color: white;
}

.Idioma{
    justify-content: left;
    font-family: 'Playfair Display',serif;
    font-weight: 900;
}

.dropdown-menu{
    background-color: transparent; /* Fondo transparente */
    border: none; /* Sin bordes */
    box-shadow: none; /* Sin sombra */
}

.offcanvas .dropdown-toggle {
    color: black !important; /* Color negro para el texto */
}
/*fin del header*/


/*fin del header*/

/*main*/

/* enlace wp*/
.Logowp .fixed {
    position: fixed;
    bottom: 5rem;
    right: 0;
    padding-right: 3rem;
    z-index: 1000;
  }
  
  .fixed img {
    height: 5rem;
    border-radius: 6rem;
  }

  
@media only screen and (max-width: 600px)
{
    .Logowp .fixed {
        position: fixed;
        bottom: 5rem;
        right: 0;
        padding-right: 1rem;
        z-index: 1000;
      }

    .fixed img {
        height: 3rem;
        border-radius: 6rem;
      }
}
/*seccion reseñas google*/

.Testimonio{
    z-index: 0;
}

@media only screen and (max-width: 600px){


    .Testimonio .row{
        width: 100%;
    }
}


/* calendario de reserva*/
.booking-container {
    background-color: #05090f;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* Para que los elementos se apilen en pantallas pequeñas */
    justify-content: center; /* Centrado en pantallas pequeñas */
}

@media only screen and (max-width: 768px) {
    .booking-container {
        width: 100%;
        padding: 10px;
        gap: 10px;
    }

    .booking-field {
        flex-basis: 100%;
        text-align: center;
    }

    #boton-reservar {
        width: 100%;
        margin-top: 10px;
    }
}

.booking-field label {
    display: block;
    color: #faf8f8;
    margin-bottom: 5px;
    font-weight: bold;
}

.booking-field input[type="text"], .guests-select {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    outline: none;
    text-align: center;
}

.guests-select {
    color: #ffffff;
    background: #05090f;
    border: none;
    border-bottom: 1px solid;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    outline: none;
}

#popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.popup-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: row;
}

/* Contenido izquierdo: imagen */
.popup-image {
    width: 40%; /* Ancho de la imagen en pantallas grandes */
    height: 100%;
}

.popup-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contenido derecho: formulario */
.popup-form {
    width: 60%; /* Ancho del formulario en pantallas grandes */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-form h3 {
    font-family: "Playfair Display SC", serif;
  font-weight: 700;
  font-style: normal;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.popup-form form input, .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-form .form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.popup-form .form-buttons a, .popup-form .form-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    background-color: #05090f;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

/* Botón de cierre */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    /* Ajustes en pantallas pequeñas */
    .popup-content {
        flex-direction: column;
        width: 90%;
        height: 70%;
        max-width: 100%;
        padding: 0;
        margin-top: 6rem;
    }

    .popup-image {
        width: 100%; /* Imagen ocupa todo el ancho en móviles */
        max-height: 300px; /* Control de la altura máxima de la imagen */
    }

    .popup-image img {
        width: 100%;
        height: 180%;
        border-radius: 0;
    }

    .popup-form {
        width: 100%; /* Formulario ocupa todo el ancho en móviles */
        padding: 20px;
    }

    .popup-form h3 {
        margin-top: 10px;
    }

    .popup-form .form-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .popup-form .form-buttons a, .popup-form .form-buttons button {
        width: 100%;
    }
}

@media only screen and (max-height: 916px){
    .popup-content{
        height: 43rem;
    }
}

@media only screen and (max-height: 896px){
    .popup-content{
        height: 44rem;
    }
}

@media only screen and (max-height: 667px){
    .popup-content{
        margin-top: 11rem;
        height: 45rem;
    }
}




  /* Flatpickr custom styles */
  .flatpickr-calendar {
    background-color: #ffffff;
    color: #ffffff;
    border: none;
  }

  .flatpickr-months .flatpickr-month {
    color: #ffffff;
  }







/*carousel*/

#Principal{
    background-color: rgb(201, 204, 206);
    font-family: 'Playfair Display',serif;
    
}

#FotoPrincipal .carousel-item img{
    padding-top:4.5rem;
    width: 100%;
    height: 59rem;
}


@media only screen and (max-width: 600px)
{
    #FotoPrincipal .carousel-item img{
        padding-top:5rem;
        width: 100%;
        height: 20rem;
    }

}

/*fin carousel*/


/*Principal*/

/*container1*/
#Principal .container1{
    background-color: aliceblue;
    padding: 4rem;
    width: 100%;
    height: 20rem;
    align-items: center; 
}

.container1 .title1{
    font-size: 40px;
}
.container1 .text1{
    font-size: 20px;
}

@media only screen and (max-width: 600px)
{
    #Principal .container1{
        height: 25rem;
    padding: 4.5rem;
    }
    #Principal .container1 .text-center{
        padding-bottom: 3rem;
    }
    
    
.container1 .title1{
    font-size: 25px;
}
.container1 .text1{
    font-size: 15px;
}
}
@media only screen and (max-width: 300px){
    #Principal .container1{
        padding: 3.5rem;
    }
}



/*container2*/
#Principal .container2{
    padding-top: 2rem;
    justify-content:center;
    margin-bottom: 3rem;
}
#Principal .container2 .row {
    padding-top: 2rem;
    justify-content:center;
    margin: 0;
}


#Principal .container2 .card-title{
    font-size: 50px;
}

#Principal .container2 .card-title1
{
    font-size: 30px;
}

#Principal .container2 .card-text{
    font-size: 20px;
}

#Principal .container2 .col-md-8{
    padding-top: 6rem;
    align-items: center;
    text-align: center;   
}


#Principal .container2 .card-body{
    padding-top: 2rem;
    align-items: center;
    text-align: center;
}

@media only screen and (max-width: 600px)
{
    #Principal .container2 {
        margin-top: 1rem;
        padding-bottom: 3rem;
        padding-right: 0;
    }

    #Principal .container2 .col-8{
        padding-top: 0.5rem;
        width: 100%;
        align-items: center;
        text-align: center;   
    }
    #Principal .container2 img{
        padding: 0;
        width: 100%;
        height: 14rem;
    }
    #Principal .container2 .card-title{
        font-size: 30px;
        
    }
    #Principal .container2 .card-text{
        font-size: 20px;
    }


}



/*Testimonio*/
#Principal .Testimonio{
    background-color: rgb(255, 255, 255);
    padding-top: 2rem;
    width: 100%;
    align-items: center; 
    justify-content: center;
    display: flex;
}  

@media only screen and (max-width: 600px)
{
    #Principal .Testimonio{
        padding-top: 1rem;
        height: 30rem;
    }
    
}




/*container4*/
#Principal .container4{
    padding-top: 2rem;
    justify-content:center;
    margin-bottom: 1rem;
}
#Principal .container4 .row {
    padding-top: 2rem;
    justify-content:center;
    margin: 0;
}


#Principal .container4 .card-title{
    font-size: 50px;
}

#Principal .container4 .card-text{
    font-size: 20px;
}

#Principal .container4 .col-md-8{
    padding-top: 6rem;
    align-items: center;
    text-align: center;   
}


#Principal .container4 .card-body{
    padding-top: 2rem;
    align-items: center;
    text-align: center;
}


@media only screen and (max-width: 600px)
{
    #Principal .container4 {
        margin-top: 1rem;
        padding-bottom: 3rem;
        padding-right: 0;
        margin-bottom: 0;
    }

    #Principal .container4 .col-8{
        padding-top: 0.5rem;
        width: 100%;
        align-items: center;
        text-align: center;   
    }
    #Principal .container4 img{
        padding: 0;
        width: 100%;
        height: 17rem;
    }
    #Principal .container4 .card-title{
        font-size: 30px;
        
    }
    #Principal .container4 .card-text{
        font-size: 20px;
    }


}



/*fin del main*/


/*footer*/
.cFooter {
    height: 16rem;
    font-family: 'Playfair Display',serif;
    text-align: center;
    background-color: rgb(0, 0, 0);

}

.cFooter .containterFooter{
    height: 5rem;
}


.fImg {

    width: 3rem;
    height: 5rem;
}

.iRedes {

    width: 40px;
    height: 40px;
}

.item {

    font-size: 18px;
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 1.6em;
}


.lista {
    list-style-type: none;
}

@media only screen and (max-width: 600px) {

    .cFooter {
        height: 20rem;
    
    }
    .cFooter .containterFooter{
        height: 9rem;
    }
}

@media only screen and (max-width: 300px){
    
    .cFooter .lista .item 
    {
        font-size: 15px;
    }
}


/*fin del footer*/