
@font-face {
    font-family: 'SouthAustralia-Regular';
    src: url('../lib/SouthAustralia-Regular.ttf') format('truetype'), 
        url('../lib/SouthAustralia-Regular.otf') format('opentype');
    /* Add more formats if needed */
    font-weight: normal;
    font-style: normal;
}




html {
    font-size: 14px;
    
}



body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Disable horizontal scrolling */
}

h1 {
    font-family: 'SouthAustralia-Regular', sans-serif;
    margin-bottom:40px;
    line-height:70px;

}

h2 {
    font-family: 'SouthAustralia-Regular', sans-serif;
    margin-bottom: 40px;
    line-height: 30px;
}

.bg-nav {
    background-color: #FFF;
    
}

.navbar-nav  a.nav-link {
    color: #0F4061;
}
a.navbar-brand {
    color: #0F4061;
}


.custom-toggler.navbar-toggler {
    border-color: #0F4061;
}
/* Setting the stroke to green using rgb values (0, 128, 0) */

.custom-toggler .navbar-toggler-icon {
    background-image: url( "data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(15, 64, 97, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden; /* Hide overflowing content */
}







/*  -----------------------------------------------*/


#hero {
    position: relative;
    overflow: hidden;
    height: 40vh; /* Set a fixed height for the hero section */
}

    #hero img {
        width: 100%;
        height: 40vh;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; /* Initially hide all images */
        transition: opacity 1s ease-in-out; /* Smooth transition effect */
    }

#hero img.active {
    opacity: 1; /* Display the active image */
}

/* Add your overlay styles here */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: rgba(0, 0, 0, 0.2); /* Adjust the overlay color and opacity */
    z-index: 1;
}

/* Your text and button styles */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}


/*  -----------------------------------------------*/












.hero-container {
    display: flex;
    width: 100%; /* Adjust based on the number of images */
    /* animation: scroll 30s linear infinite;  Adjust the duration based on your preference */
}
/*
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.6666%);  Adjust based on the number of images 
    }
}
*/
.hero-image {
    flex: 1;
    background-size: cover;
    height: 40vh;
    background-position:center;
}
.heroText{

}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index:3;
}

#whatsapp-button img {
    width: 60px; /* Ajusta el tamaño según sea necesario */
    border-radius: 10%;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3em;
    margin: 0;
}

.cta-button {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0F4061;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #2B90C6;
}

.hotel-description {
    background-color:#FFF ;
    color:#0F4061;
}

.section-divider {
    border-bottom: 2px solid #333; /* Adjust the color and thickness as needed */
    margin: 20px auto; /* Center the line and adjust the spacing as needed */
    width: 60px; /* Adjust the width of the line as needed */
}






@media (min-width: 768px) {
    html {
    
  }
}

html {
  position: relative;
  min-height: 100%;
}



#services {
    color: #FFF;
    background-color: #0F4061;
}



.service-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px; /* Adjust the margin as needed */
}

.service-icon {
    text-align: center;
}

.service-icon i {
    font-size: 3em;
    margin-bottom: 10px;
}

.card-button-container {
    text-align: center;
    margin-top: 10px; /* Adjust as needed */
}

#gallery {
    
    background-color: #0F4061;
    color:#FFF;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    margin-top: 30px; /* Adjust the margin as needed */
}

/* Added style for the gallery images */
.gallery-scroll {
    display: inline-flex;
    transition: transform 0.3s ease; /* Smooth transition for scrolling */
    overflow-x: hidden;
}

.gallery-scroll img {
    max-width: 100%;
    max-height: 400px; /* Adjust the maximum height of the images */
    margin-right: 10px; /* Adjust the margin between images */
}







.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease-in-out;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item a {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1; /* Ensure link is clickable */
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .gallery-item:hover a {
        opacity: 1;
    }











.card-img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
}

.card:hover .card-img-overlay {
    opacity: 1.0; /* Show on hover */
}
.modal-button {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}




.card-img-top {
    object-fit: cover; /* Resize images to cover the container */
    height: 200px; /* Adjust the height as needed */
}

#image-cards {
    background-color: #FFF;
    color: #0F4061;
}
#image-cards h2 {
    
    color: #0F4061;
    text-align: center;
}






#contact {
    color: #0F4061;
    background-color:#FFF;
}

iframe {
    width:600px;
    height:450px;
}

/* Added style for the custom scroll buttons */
.scroll-left,
.scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 60px;
    cursor: pointer;
    color: #FFF;
    transition: color 0.3s ease;
}

.scroll-left:hover,
.scroll-right:hover {
    color: #B68A3F;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

.footerbg {
    background-color: #0F4061;
    
}
footer {
    
    color: #fff !important;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p{
    color: #fff !important;
    
}

.social-icons a {
    color: #fff !important;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}




.gal-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gal-item:hover img {
    transform: scale(1.1);
}







@media screen and (max-width: 600px) {


    .hero h1{
        font-size:1.6em;
        line-height:60px;
    }

   

    iframe {
        width: 80vw;
        height: 100%;
    }

    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    h2 {
        font-size: 18px;
        line-height: 52px;
        margin-bottom: 20px;
    }




    


}

/* Media query for medium-sized viewports */
@media screen and (min-width: 601px) and (max-width: 1024px) {
    

    h1 {
        font-size: 2em;
        line-height:70px;
    }
    h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
    }


    #hero {
        height: 80vh; /* Set a fixed height for the hero section */
    }

    #hero img {
        height: 80vh;
    }



    /* Add your overlay styles here */
    .overlay {
        height: 80vh;
    }
    .hero-image {
        height: 80vh;
        object-fit: cover;
    }



}

/* Media query for larger viewports */
@media screen and (min-width: 1025px) {
    
    h1{
        line-height:80px;
    }
    h2 {
        font-size: 24px;
        line-height: 40px;
        margin-bottom:40px;
    }

    #hero {
        height: 90vh; /* Set a fixed height for the hero section */
    }

        #hero img {
            height: 90vh;
           
        }



    /* Add your overlay styles here */
    .overlay {
        height: 90vh;
    }

    .hero-image {
        height: 90vh;
        
    }





}
