:root{
    --green: #1ec6b6;
    --coral: #ffbe44;
    --light-grey: #f7f7f7;
    --dark: #0e1010;
    --trans: all 0.3s ease-in-out;
}
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 1rem 0;
    z-index: 999;
    border-bottom:  #ffbe44 4px solid;
}
.navbar .container{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.site-brand{
    color: #fff;
    font-size: 2.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 0;
    opacity: 0.95;
}
.site-brand span{
    font-weight: 0;
}
#navbar-show-btn{
    background: transparent;
    color: var(--coral);
    font-size: 2rem;
    opacity: 0.9;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border: none;
}
#navbar-show-btn:hover{
    opacity: 1;
}

/* navbar side menu */
#navbar-collapse{
    background-color: var(--coral);
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    padding: 2rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.navbar-collapse-rmw{
    /* js related */
    -webkit-transform: translateX(0)!important;
        -ms-transform: translateX(0)!important;
            transform: translateX(0)!important;
}
#navbar-close-btn{
    background: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 0.2rem;
    font-size: 2rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    position: absolute;
    right: 1rem;
    top: 2rem;
    border: none;
}
#navbar-close-btn:hover{
    background-color: #fff;
    color: var(--dark);
}
.navbar-nav {
    margin-top: 5rem;
}

.nav-item {
    margin: 1.6rem 0;
}

.nav-link {
    color: black;
    font-size: 1rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.nav-link:hover {
    font-weight: 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(255, 251, 251, 0.767);
    text-align: center;
    transition: opacity 0.2s ease-in-out;
    padding: 0;
    left: 0; /* Align the dropdown menu with the parent */
    width: 200px;
}

.nav-item {
    position: relative; /* Add relative positioning to the parent li */
}

.nav-item:hover .dropdown-menu {
    display: block;
    top: 100%; /* Adjust as needed */
}

.dropdown-menu li {
    padding: 10px;
    text-align: left; /* Ensure left alignment of dropdown items */
}

.dropdown-menu li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 0;
    width: fit-content;
    display: block;
}

.dropdown-menu li:hover {
    border-bottom: coral 1px solid;
}

.dropdown-header {
    font-weight: bold;
    color: coral;
}



/* Mobile responsiveness */
@media only screen and (max-width: 600px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        position: static;
        background-color: rgba(255, 251, 251, 0.767);
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
    }

    .dropdown-menu li {
        padding: 10px;
        text-align: left;
        border-bottom: coral 1px solid;
    }
}
header {
    position: relative;
    overflow: hidden;
}

.header-slider {
    margin-top: 1rem;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.header-slide {
    flex: 1;
    min-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover; /* Ensure the background image covers the entire container */
    background-position: center; /* Center the background image */
}


.header-slide img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images cover the entire container */
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    text-align: center;
    width: 100%;
    padding-top: 15rem;
}

.header-title h1 {
    margin: 0;
    font-size: 2rem; /* Adjust the font size for larger screens */
    line-height: 1.4;
    word-wrap: break-word; /* Allow words to break onto the next line */
    -webkit-animation: bounce-in-top 1.1s both;
    animation: bounce-in-top 1.1s both;
}

.header-title .btn {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    
    .header-title h1 {
        font-size: 2rem; /* Adjust the font size for smaller screens */
        line-height: 1.2;
    }
}

.header-title p{
    margin: 1.8rem auto;
    max-width: 700px;
    font-weight: 0;
    font-size: 1.3rem;
    line-height: 1.7;
}

@-webkit-keyframes bounce-in-top{
    0%{
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
        opacity: 0;
    }
    38%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        opacity: 1;
    }
    55%{
        -webkit-transform: translateY(-65px);
                transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    72%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    81%{
        -webkit-transform: translateY(-28px);
                transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    90%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    95%{
        -webkit-transform: translateY(-8px);
                transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    100%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top{
    0%{
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
        opacity: 0;
    }
    38%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        opacity: 1;
    }
    55%{
        -webkit-transform: translateY(-65px);
                transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    72%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    81%{
        -webkit-transform: translateY(-28px);
                transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    90%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    95%{
        -webkit-transform: translateY(-8px);
                transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    100%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
}

.header-form{
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 0.2rem;
}
.header-form h3{
    font-size: 1.2rem;
}
.header-form form{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.8rem;
}
.header-form form .form-control{
    -webkit-box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
}
.header-form input[type = "date"]{
    text-transform: uppercase;
}
.header-form input:not([type = "submit"])::-webkit-input-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"])::-moz-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"]):-ms-input-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"])::-ms-input-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"])::placeholder{
    color: #fff;
}
::-webkit-calendar-picker-indicator{
    -webkit-filter: invert(1);
            filter: invert(1);
}
.header-form .btn{
    margin-top: 0.8rem;
}

/* change background on scroll */
.navbar-cng{
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
            box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border-bottom:  white 1px solid;
}
.navbar-cng .site-brand{
    color: var(--dark);
}
.navbar-cng .site-brand span{
    color: var(--coral);
}
.navbar-cng #navbar-show-btn{
    color: var(--coral);
}

/* featuredpngwing */
#featured{
    background-color:rgb(254, 246, 233);
}
.featured-item{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 50px 0 50px 0;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.featured-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
}
.featured-item-content{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: #fff;
    width: 100%;
    padding: 1rem;
    -webkit-transform: translateY(68%);
        -ms-transform: translateY(68%);
            transform: translateY(68%);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.featured-item-content span{
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1.2rem;
    text-transform: capitalize;
}
.featured-item-content .text{
    color: #fff;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.featured-item:hover .featured-item-content{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/* services */
#services{
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/services-bg.jpg) center/cover no-repeat;
    background: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/services-bg.jpg) center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/services-bg.jpg) center/cover no-repeat;
}
#services *{
    color: #fff;
}
.services-item{
    text-align: center;
    padding: 2rem 0.5rem;
    margin: 2rem 0;
}
.services-icon{
    font-size: 3.2rem;
}
.services-item h3{
    margin: 1rem 0;
    font-size: 1.6rem;
}
.services-item .btn{
    margin-top: 1.6rem;
    display: inline-block;
}

/* testimonials */
#testimonials{
    background-color: var(--light-grey);
}
.test-item{
    border: 2px solid var(--light-grey);
    padding: 2rem 1rem;
    position: relative;
    background-color: #fff;
    border-radius: 0.2rem;
    margin: 2rem 0 14rem 0;
}
.test-item::after{
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}
.test-item-info{
    position: absolute;
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
}
.test-item-info img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: 1rem;
}
.test-item-info h3{
    font-size: 1rem;
}
.button {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #e7b038; /* Button background color */
    color: #fff; /* Button text color */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
  }
  
  .button:hover {
    background-color: #ad8121; /* Button background color on hover */
  }
  
  .button-destination {
    display: inline-block;
    padding: 10px 0 10px 0 ;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #e7b038; /* Button background color */
    color: #fff; /* Button text color */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
  }
  
  .button-destination:hover {
    background-color: #a47103; /* Button background color on hover */
  }
/* video */
.video-wrapper{
    height: 500px;
    position: relative;
}
.video-wrapper video{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
#play-btn{
    position: absolute;
    z-index: 5;
    width: 70px;
    height: 70px;
    background-color: var(--coral);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    padding-left: 0.4rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
#play-btn:hover{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

/* footer */
footer {
    background-color: #D9CFBC;
    color: black;
    font-weight: 0;
    text-align: center;
    position: relative;
}

footer::before{
    content: "";
    position: absolute;
    background-color: rgb(168, 112, 6);
    height: 4px;
    top: 0;
    left: 0;
    width: 100%;
}
footer .site-brand{
    margin-bottom: 0.5rem;
    display: block;
    font-size: 2rem!important;
}
.footer-item{
    margin: 1rem 0;
    padding-bottom: 2rem;
}
.footer-item a{
    font-size: 1.2rem;
    color: #000;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.footer-item a:hover{
    color: var(--light-grey);
}
.footer-item ul{
    padding: 0;
}
.footer-item h2{
    margin-bottom: 1.4rem;;
}
.social-links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.social-links li{
    margin: 0.5rem;
}
.footer-item:nth-child(3) li{
    margin: 0.5rem 0;
}
.footer-item:nth-child(3) a{
    display: inline-block;
    font-size: 1rem;
    opacity: 0.7;
}
.subscribe-form form{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.subscribe-form form input{
    width: 100%;
    max-width: 300px;
}
.subscribe-form .form-control{
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.subscribe-form .form-control:focus{
    border-color: #fff;
}
.subscribe-form form input[type = "email"]::-webkit-input-placeholder{
    color: #fff;
    opacity: 0.3;
}
.subscribe-form form input[type = "email"]::-moz-placeholder{
    color: #fff;
    opacity: 0.3;
}
.subscribe-form form input[type = "email"]:-ms-input-placeholder{
    color: #fff;
    opacity: 0.3;
}
.subscribe-form form input[type = "email"]::-ms-input-placeholder{
    color: #fff;
    opacity: 0.3;
}
.subscribe-form form input[type = "email"]::placeholder{
    color: #fff;
    opacity: 0.3;
}


/* ### GALLERY PAGE ### */
header.header-sm{
    min-height: 35vh;
}
/* gallery */

.gallery-item::after{
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
}
.gallery-item {
    margin: 2rem 0;
    overflow: hidden;
    position: relative; /* Ensure .gallery-item is positioned */
    cursor: pointer;
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Constrain width to match parent container */
    padding: 20px; /* Add padding to contain the content */
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2; /* Ensure .gallery-content appears above other elements */
    max-height: 100%; /* Set maximum height */
    overflow: hidden; /* Hide overflowing content */
    word-wrap: break-word; /* Allow long words to break and wrap */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

.gallery-item:hover .gallery-content {
    opacity: 1;
}

.gallery-title,
.gallery-info {
    margin: 0; /* Remove default margin */
    padding: 5px 0; /* Add padding to separate elements */
}

.gallery-info {
    font-size: 14px; /* Adjust font size as needed */
    line-height: 1.5; /* Set line height for better readability */
}

/* img modal box */
#img-modal-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
}

#img-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

#img-modal img {
    max-width: 100%;
    max-height: 80vh; /* Adjust the max-height value as needed */
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}


#img-modal-box button{
    position: absolute;
    font-size: 1.4rem;
    background-color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border: none;
}
#img-modal-box button:hover{
    opacity: 0.9;
}
#modal-close-btn{
    top: -17.5px;
    right: -17.5px;
    z-index: 999;
}
#next-btn{
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
#prev-btn{
    top: 50%;
    left: 1rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
#next-btn:hover, #prev-btn:hover{
    background-color: var(--dark);
    color: #fff;
}

/* popular section */
#popular.py-4{
    padding-bottom: 0;
}
.popular-item{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.popular-item::after{
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
}
.popular-item div{
    position: absolute;
    color: #fff;
    z-index: 2;
    bottom: -100%;
    width: 100%;
    padding: 2rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.popular-item .rating{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0.7rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 0;
}
.popular-item:hover div{
    background-color: #fff;
    color: #000;
    bottom: 0;
    opacity: 0.95;
}

/* ### BLOG PAGE ### */
/* blog */
#blog{
    background-color: var(--light-grey);
}
.blog-item{
    background-color: #fff;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border-radius: 10px;
}
.blog-item-top{
    position: relative;
}
.blog-item-top img {
    max-height: 245px;
    width: 100%;
    height: auto;
  }
  
.blog-title{
    position: absolute;
    background-color: var(--coral);
    color: #fff;
    padding: 0.5rem;
    height: 38px;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 2px;
    bottom: -19px;
    left: 5%;
}
.blog-item-bottom{
    padding: 2rem 1rem;
}
.blog-item-bottom span{
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0.7;
    letter-spacing: 2px;
    display: block;
    margin-top: 1rem;
}
.blog-item-bottom p{
    line-height: 1.6rem;
}
.blog-item-bottom a{
    margin: 1rem 0;
    font-size: 1.4rem;
    display: block;
    font-family: 'Raleway',sans-serif;
    font-weight: 0;
    line-height: 1.6;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.blog-item-bottom a:hover{
    opacity: 0.8;
}

/* ### ABOUT PAGE ### */
/* about */
#about{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2rem;
}
.about-row {
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 3rem;
    background-color: white;
    
}
.hotel-row {
    align-items: center;
    margin-bottom: 3rem;
    background-color: #fff;
    
}

.tours-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); /* Two columns, each taking up at least 50% */
    gap: 15px; /* Adjust the gap between elements */
    
}
.tours-container{
   padding: 1rem;
   background-color: #fff;
}
.main-image-container,
.tours-content {
    width: 100%; /* Take up the full width of the grid cell */
}

@media (min-width: 768px) {
    .tours-row {
        grid-template-columns: repeat(2, 1fr); /* Two equal columns on larger screens */
    }

    .main-image-container:nth-child(4n + 1),
    .tours-content:nth-child(4n + 2) {
        grid-column: span 2; /* Span two columns on every 4th and 5th element to create the alternating effect */
    }
}




.content-row {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    
}
.about-left,
.about-right {
    background-color: #fff;
    padding: 0 1rem 2rem;     
    font-size: 20px;
}

.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
  }
  
  .tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    text-align: center;
    line-height: 1.5;
  }
  .poiret-one-regular {
    font-family: "Poiret One", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    text-align: center;
    line-height: 1.5;
    padding: 0 4rem 2rem;
  }
  
    
  
.about-right .text{
    margin-bottom: 1rem;
}
.about-right h2{
    margin-bottom: 1rem;
}


.about-right-hotels {

}
.about-right-hotels .text{
    margin-bottom: 1rem;
}
.about-right-hotels h2{
    margin-bottom: 1rem;
}
.about-right {
    position: relative;
    overflow: hidden;
}

.gallery-parks {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;

    .main-image-container {
        display: inline-block; /* Ensure the block-level element behaves as an inline element */
    }
}
.pic-parks {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;

    .main-image-container {
        display: inline-block; /* Ensure the block-level element behaves as an inline element */
    }
}
.main-image-container {
    margin-bottom: 10px;
}

.main-image {
    max-width: 100%;
    max-height: 100vh; /* Set a maximum height relative to the viewport height */
    width: auto; /* Allow the width to adjust based on the max-height constraint */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px 0 20px 0;
}


.thumbnail-container {
    display: flex;
}

.thumbnail {
    width: 50px; /* Adjust the width of each thumbnail as needed */
    height: auto;
    margin-right: 5px; /* Adjust the spacing between thumbnails as needed */
    cursor: pointer;
}

.thumbnail:hover {
    border: 0px solid coral;
}


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

.slider-container img {
    width: 100%;
    height: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    outline: none;
}

.slider-btn:hover {
    color: #555;
}

/* facts */
#facts{
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/facts-img.jpg) center/cover no-repeat;
    background: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/facts-img.jpg) center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/facts-img.jpg) center/cover no-repeat;
    min-height: 80vh;
}
#facts .title-wrap{
    color: #fff;
}
#facts .sm-title{
    color: #fff;
}
.facts-item{
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}
.facts-icon{
    font-size: 3.2rem;
}
.facts-info strong{
    font-size: 2rem;
    display: block;
    margin: 1rem 0;
}
.facts-info .text{
    text-transform: uppercase;
}

/* ### CONTACT PAGE ### */
/* contact */

.destination-item {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 100%; /* Adjust width as desired */
    max-width: 400px; /* Maximum width to maintain responsiveness */
    height: auto; /* Allow height to adjust based on content */
    margin: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Media query for larger screens */
@media (min-width: 1200px) {
    .destination-item {
        width: 100%; /* Adjust width for larger screens */
    }
}


.destination-item:hover {
    transform: scale(1.05);
}

.destination-item-top {
    position: relative;
    overflow: hidden;
    height: 60%;
}

.destination-item-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.destination-item-bottom {
    padding: 10px;
    background-color: #fff;
    height: 40%;
}

.destination-item-bottom span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.destination-item-bottom p {
    font-size: 16px;
    line-height: 1.4;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.page-title {
    text-align: center;
    margin-bottom: 2rem;
    
}

.page-title h1 {
    font-size: 3.5rem; 
    color: #ffffff; 
    margin-top: 10rem;
}

.share-button {
    display: inline-block;
    padding: 5px 15px;
    margin-right: 40px;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: #0056b3;
}

/* Center the button horizontally */
.share-button {
    text-align: center;
}

/* Center the button vertically if needed */
.share-button {
    line-height: 40px; /* Adjust the line height to vertically center the button */
}
.share-button > .fas {
    margin-left: 5px; /* Adjust margin as needed */
}
.button-wrapper {
    text-align: center; /* Center the content horizontally */
    margin-bottom: 10px; /* Adjust margin as needed */

}
.island button {
    flex-grow: 1; /* Make buttons grow equally */
    border: none;
    background-color: #db9107;
    color: #fff !important; /* Change font color */
    padding: 10px 20px; /* Add padding */
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase; /* Convert text to uppercase */
    border-radius: 5px; /* Add border radius */
}

/* Style for button hover */
.island button:hover {
    background-color: #996504;
}

/* Different styles for each button */
.island button:nth-child(1) {
    border-right: 2px solid #fff; /* Add right border */
}

.island button:nth-child(2) {
    border-right: 2px solid #fff;
}

/* Ensure these styles only apply to buttons within the .island class */
.island button a {
    color: inherit !important; /* Inherit color from parent (white) */
    text-decoration: none; /* Remove underline */
}

.box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
}
.slide-right {
    opacity: 0;
    transform: translateX(40px); 
}
.animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.modal {
    display: none; /* Hide modal by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 9999;
    overflow: auto; /* Make the modal scrollable */
}

.modal .container-contact {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust maximum width as needed */
    margin: 10% auto; /* Center the modal vertically */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
}

.modal.show {
    display: block; /* Show modal when it has the "show" class */
}
/* Close button styles */
#modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: red;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
