@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

:root{
    --orange-color: #FF6900;
    --yellow-color: #FCFA00;
    --green-color: #119600;
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --gray-color: #D7D9DC;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;

}
h1{
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h2,h3,h4,h5,h6{
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
p{
    margin-bottom: 1rem;
}
/* header */
.container{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.full-container-max{
    max-width: 1925px;
    margin: 0 auto;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-color);
    padding: 0 1rem;
    position: fixed;
    width: 100%;
    height: 85px;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container-btn-menu{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.container-btn-menu .title-btn{
    display: none;
    border-right: 1.5px solid white;
    padding-right: 1rem;
    font-weight: bold;
    font-size: 20px;
}
.lateral-header{
    width: 50px;
}
#btn-menu{
    cursor: pointer;
    transition: transform 0.3s 0.25s;
}
.bar1, .bar2, .bar3 {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 5px;
    transition: all 0.3s linear;
}
.bar2{
    width: 35px;
}


#btn-menu.active{
    /* transform: rotate(90deg); */
}
#btn-menu.active .bar1{
    transform: rotate(-45deg) translate(-6px, 7px);
    background-color: var(--dark-color);
}
#btn-menu.active .bar2{
    width: 0;
    background-color: var(--dark-color);
}
#btn-menu.active .bar3{
    transform: rotate(45deg) translate(-6px, -7px);
    background-color: var(--dark-color);
}

#btn-admin{
    cursor: pointer;
    transition: transform 0.3s 0.25s;
}

#btn-admin .btn-person a i{
   color: var(--dark-color);
}


.logo{
    display: none;
}
.content-menu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    z-index: 999;
    padding: 3rem;
    padding-top: 85px;
    overflow-y: auto;
    transition: all 0.5s
}
.content-menu .content-language{
    display: flex;
    justify-content: space-evenly;
}
.content-menu ul li{
    list-style: none;
    margin: 1rem 0;
}
.content-menu a{
    display: block;
    text-align: center;
    color: var(--dark-color);
    text-decoration: none;
    cursor: pointer;
}
.content-menu.active{
    display: block;
}
/* .bi-person::before {
    content: "\f4e1";
    color: white;
} */

.bi-person::before {
    color: var(--light-color);
}

/* header2 */
.header-scroll{
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}
.header-scroll, .navbar.active {
    background-color: var(--light-color); /* Cambia este color al deseado */
}
.navbar.active{
    box-shadow: none;
}
.header-scroll .bar1, .header-scroll .bar2, .header-scroll .bar3 {
    background-color: var(--dark-color);
}
.header-scroll .bi-person::before{
    color: var(--dark-color);
}
.header-scroll .logo, .navbar.active .logo{
    display: block;
}
.header-scroll .logo-white, .navbar.active .logo-white{
    display: none;
}
.header-scroll .container-btn-menu .title-btn,.navbar.active .container-btn-menu .title-btn{
    color: #000000;
    border-color: #000000;
}

/* Section hero */
#hero{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: var(--light-color);
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Color negro semitransparente */
    z-index: 0;
}
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}
/* section second */
#second-section .flex{
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
}
#second-section .left, #second-section .right {
    width: 100%;
}
#second-section .left{
    background-image: url('/assets/img/palmeras_verde_fuerte.webp');
    background-size: cover; /* Ajusta la imagen para cubrir completamente el contenedor */
    background-position: center; /* Centra la imagen en el contenedor */
    background-repeat: no-repeat;
    color: var(--light-color);
    padding: 2rem;
    padding-bottom: 6rem;
    border-radius: 10px;
    /* background: var(--green-color); */
}
#second-section .right{

}
#second-section .right img{
    display: block;
    margin: 0 auto; /* Centra la imagen */
    width: 80%; /* Ajusta el tamaño de la imagen */
    position: relative;
    top: -80px;
    border-radius: 10px;
}

/* section title */
.pre-title-section{
    display: block;
    font-size: 20px;
    text-align: center;
    color: var(--orange-color);
    font-weight: 600;
}
.title-section{
    display: block;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: var(--green-color);
}

/* section carousel */
#carouselExampleIndicators{
    margin-top: 2rem;
}
#carousel-section{

}
.carousel-inner{
    padding: 1rem;
}

.img-wrapper{
    max-width: 100%;
    height: 65vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.card img{
    width: 100%;
    height: 100%;
}
.icons-image{
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    margin-top: 1rem;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}
.icons-image .item-image{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.icons-image .item-image span{
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
/* boton habitacion */
.btn-outline-aguysal{
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    text-transform: uppercase;
    padding: 0.5rem 2rem;
}
.btn-outline-aguysal:hover{
    background-color: var(--green-color);
    border-color: var(--green-color);
    color: var(--light-color);
}

.card{
    border: none;
    margin: 0 0.5rem;
    box-shadow: 2px 6px 8px 0 rgba(22,22,26, .18);
}
.carousel-control-prev, .carousel-control-next{
    width: 6vh;
    height: 6vh;
    background-color: var(--orange-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.card-btns{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}


/*PACKAGE*/
.header-package {
    background-image: url('/assets/img/textura_alrga_verde.webp');
    height: 300px;
    color: white;
    padding-top: 4rem;
    margin-bottom: 20rem;
}

/* container1 */
.container1 {
    position: relative;
    width: 95vw;
    height: 95vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider1 {
    position: absolute;
    inset: 80px 200px 80px 80px;
    background-color: #ccc;
    border: 20px;
}

.slider1 .slides {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    height: 320px;
    background: var(--img);
    background-size: cover;
    background-position: center;
    transition: 0.5s;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.slider1 .slides:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
    background-size: cover;
}

.slider1 .slides:nth-child(2) {
    left: calc(70% + 240px);
    background-size: cover;
}

.slider1 .slides:nth-child(3) {
    left: calc(70% + 240px);
    background-size: cover;
}

.slider1 .slides:nth-child(4) {
    left: calc(62% + 500px);
    background-size: cover;
}

.slider1 .slides:nth-child(5) {
    left: calc(50% + 760px);
    background-size: cover;
}

.slider1 .slides:nth-child(6) {
    left: calc(50% + 1200px);
    background-size: cover;
    opacity: 0;
}

.buttons {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 20px;
}

.buttons span {
    position: relative;
    width: 50px;
    height: 50px;
    background: #111;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: center;
    border-radius: 50%;
}

.buttons span:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    /* border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(45deg) translate(2px, 2px); */
}

.buttons span:nth-child(2)::before {
    transform: rotate(135deg) translate(2px, 2px);
}

.buttons span:active {
    opacity: 0.5;
}

.content1 {
    position: relative;
    padding: 40px;
    max-width: 600px;
    transition: 0.25s;
    transition-delay: 0s;
    transform: translateY(40px);
    z-index: 1000;
    opacity: 0;
}

.name {
    font-size: 1.5rem;
    color: #fff;
}

.des {
    color: #fff;
}

.slider1 .slides:nth-child(1) .content1,
.slider1 .slides:nth-child(2) .content1 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}



/*FOOTER*/
.main-footer {
    background-color: var(--light-green);
    padding-top: 70px;
    z-index: 1;
}

.text-dark{
    text-decoration: none;
}
.text-dark .gadbeni{
    font-weight: bold;
}

.main-footer .text-reset {
    color: #333333;
}

.main-footer .text-reset:hover {
    color: #007bff;
}

.main-footer .fw-bold {
    font-weight: bold;
}

.main-footer .fab {
    font-size: 1.25rem;
}

.main-footer .fa-home,
.main-footer .fa-envelope,
.main-footer .fa-phone,
.main-footer .fa-print {
    margin-right: 10px;
}

/*BOTONES DE REDES SOCIALES*/
#social-media-toggle {
    display: none;
}

.social-media-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.social-media-links a,
.social-media-toggle label {
    display: block;
    text-decoration: none;
    color: #fff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
    transition: all 500ms ease;
    cursor: pointer;
}

.social-media-links a {
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden;
}

#social-media-toggle:checked~.social-media-links a {
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.social-media-toggle label {
    cursor: pointer;
    background: var(--green-color);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bi-wechat,
.bi-x,
.bi.bi-facebook,
.bi.bi.bi.bi-messenger,
.bi.bi-whatsapp {
    font-size: 30px;
}

#social-media-toggle:checked~.social-media-toggle label .bi-wechat {
    display: none;
}

#social-media-toggle:checked~.social-media-toggle label .bi-x {
    display: block;
}

.social-media-toggle label .bi-x {
    display: none;
}
.bi.bi-whatsapp{
    background: #25d366;
}
.bi.bi-facebook,
.bi.bi.bi.bi-messenger{
    background: #3b5998;
}

/* room show */
.skin_banner{
    width: 100%;
    /* position: absolute;
    top: 50%;
    left: 0; */
    z-index: -1;

}
.section-top{
    margin-top: 125px;
}
.miga-pan *{
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
}
.miga-pan strong{
    font-weight: 600;
}
.miga-pan a{
    color: var(--orange-color);
    text-decoration: none;
}
.icons-color-container{
    padding-top: 2rem;
    display: flex;
    justify-content: space-evenly;

}
.icons-color-container *{
    font-size: 25px;
}
.icons-color-container i{
    color: var(--green-color);
    padding: 1rem;
    border: 3px solid var(--green-color);
    border-radius: 50%;
}
.icons-color-container br{
    height: 10px;
}
.icons-color-container span{
    font-size: 16px;
    line-height: 10px;
}

.img-gallery{
    width: 100%;
    height: 350px;
    object-fit:
    cover;
}

/* Responsive */

@media (min-width: 200px) and (max-width: 400px) {
    .header-package{
        height: 200px;
    }
  }

@media (min-width: 276px) {
    .container{
      max-width: 540px;
  }
}
@media (min-width: 576px) {
    .container{
        max-width: 540px;
    }

    .carousel-inner{
        display: flex;
    }
    .carousel-inner .my-carousel-item{
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
    .img-wrapper{
        height: 23vw;
    }
}


@media screen and (max-width: 900px) {
    .slider1 {
        inset: 40px 40px 200px 40px;
    }

    .slider1 .slides {
        width: 100px;
        height: 100px;
        top: initial;
        bottom: -170px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .slider1 .slides:nth-child(1),
    .slider1 .slides:nth-child(2) {
        top: initial;
        bottom: 0px;
    }

    .slider1 .slides:nth-child(3) {
        left: 0px;
    }

    .slider1 .slides:nth-child(4) {
        left: 120px;
    }

    .slider1 .slides:nth-child(5) {
        left: 240px;
    }

    .slider1 .slides:nth-child(6) {
        left: 360px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .header-package{
        margin-bottom: 10rem;
    }
  }

@media (min-width: 768px) {
    .container{
        max-width: 720px;
    }
    .img-gallery{
        height: 650px;
    }
}


