*{
    font-family: "Karla", serif;
  font-style: normal;

}
/* Hide by default (Desktop) */
.sticky-footer-bar-new{
    display: none;
}

/* Mobile + Tablet */
@media (max-width: 1024px){
    .sticky-footer-bar-new{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white; 
        /*padding: 5px;*/
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.25);
    }

    .floating-book-btn-new{
        /*background: #fe2500;*/
        color: black;
        text-decoration: none;
        padding: 12px 28px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 420px;
        justify-content: center;
    }
}

/* Prevent overlap only on mobile/tablet */
@media (max-width: 1024px){
    body{
        padding-bottom: 50px;
    }
}

body{
    background-color: var(--seconday);
    color: var(--primary);
}

@font-face {
    font-family: 'Olivera Regular';
    font-style: normal;
    font-weight: normal;
    src: url('./assets/Olivera-ZVxzB.woff') format('woff');
}
:root{
    --font-family-olivera:'Olivera Regular';
    --font-family-karla:'Karla';
    --primary:#ffffff;
    --seconday:#000000;
    --hover:#F1EBDB;
    --btn:#F1EBDB;
}

/* header and background */
.header-stik {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 25px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.header-stik.sticky {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 0px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    opacity: 1;
}

.navbar-nav{
    align-items: center;
}

.navbar-toggler-icon{
    background-image: url('./media/hemburger-logo.svg');
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.1rem var(--primary);
}

/* Navbar Links Hover Effect */
.navbar-nav .nav-item .nav-link {
    color: var(--primary);
    font-family: var(--font-family-karla);
    font-size: 18px;
    padding: 0px 30px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--hover);
}

.btn-one{
    display: block;
    border-radius: 100px;
    font-size: 18px;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--seconday);
    background-color: var(--btn);

}
/* Button Hover */
.navbar-nav .btn-one {
    transition: background 0.3s ease-in-out, transform 0.2s ease;
}

.navbar-nav .btn-one:hover {
    background: var(--hover); /* Gold */
    color: var(--seconday);
    transform: scale(1.05);
}

/* side menu */
.menu-btn{
    display: none;
}

.menu-btn span{
    width: 46px;
    height: 4px;
    background: var(--hover);
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.menu-btn span:nth-child(1){
    width: 35px;
    margin-left: auto;
}

.menu-btn span:nth-child(3) {
    width: 35px;
    margin-left: auto;
}

.menu-btn span:nth-child(2) {
    margin: 10px 0;
    margin-right: 10px;
    width: 35px;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: var(--primary);
    color: var(--seconday);
    padding: 20px;
    transition: right 0.4s ease-in-out;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
}

.side-menu.open {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background:var(--seconday);
    font-size: 30px;
    border: 1px solid;
    padding: 10px;
    border-radius: 0px 0px 0px 40px;
    cursor: pointer;
}

.close-btn i{
    color: var(--primary);
}

.close-btn:hover{
    background-color: var(--btn);
}
.close-btn:hover i{
   color: var(--seconday);
}

.menu-btn {
    font-size: 25px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    padding: 10px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.menu-list li a {
    color: var(--seconday);
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    transition: color 0.3s;
    text-align: center;
}

.bord-one{
border: 1px solid;
border-radius: 30px;
}

.menu-list li a:hover {
    color: var(--seconday);
    background-color: var(--hover);
}

/* Hero Section */
.hero-section {
    background: url('../../assets/media/banner-back.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    text-align: left;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Hero Section Heading */

.hero-section .content {
    position: absolute;
    bottom: 10px;
    left: 5%;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-in-out forwards;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.hero-section .content-two{
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 40px;
    border-radius: 0px 100px 0px 0px;
    background: var(--seconday);
}

.hero-section .content-two h1{
    font-size: 128px;
    font-family: var(--font-family-olivera);
    color: var(--primary);
}

.hero-section .content h1{
    font-size: 128px;
    font-family: var(--font-family-olivera);
    color: var(--primary);
}


.hero-section .line-one-hori{
    height: 2px;
    width: 140px;
    background-color: var(--primary);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Video Base */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
        width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}


.hero-image-new img {
    width: 100%;
}

/* Overlay stays above video */
.hero-section .overlay {
    z-index: 1;
}

/* Content stays above overlay */
.hero-section .content,
.hero-section .content-two {
    z-index: 2;
}

/* Desktop / Mobile visibility */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

.mobile-actions{
    display:none;
}

/* Mobile breakpoint */
@media (max-width: 767px) {
    
    .mobile-actions{
        display:flex;
        align-items:center;
        gap:20px;
    }

    .mobile-insta{
        font-size:40px;
        color:#fff;
    }

    .an-head{
        display:none;
    }
    
    a.floating-book-btn{
        position:fixed;
        right:20px;
        bottom:20px;
        background:#fff;
        color:#000;
        padding:14px 24px;
        border-radius:40px;
        font-weight:600;
        text-decoration:none;
        z-index:9999;
        box-shadow:0 6px 18px rgba(0,0,0,0.25);
    }
    
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

    .hero-section .content h1 {
        font-size: 64px; /* Optional: mobile typography control */
    }
}



/* Slide Up Effect for Heading */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 4 points */
.for-pnt{
    color: var(--primary);
    padding: 3rem 0rem;
    border-bottom: 1px solid var(--primary);
}

.pnt-list ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0px;
    padding-left: 0px;
}
.pnt-list ul li{
    font-size: 20px;
}


/* Creating Comfort */
.creat-conf {
padding: 3rem 0rem 3rem;
}

.creat-conf-one{
    padding: 0px 30px;
    text-align: left;

}

.creat-conf-one h2{
    font-family: var(--font-family-olivera);
    font-size: 96px;
    font-weight: 400;
        line-height:90px;
}

#video_auto {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    padding: 25px 0px 0px 0px;
}

/* box */
.box-sec{
    padding: 3rem 0rem 3rem;
}

.box-cont{
    max-width: 180px;
    min-height: 180px;
    padding: 10px;
    margin:20px auto;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}

.box-cont:hover{
    background-color:var(--hover);
    color: var(--seconday);
}

.box-cont img {
    filter: invert(1);
    max-width: 100%;
    width: 80px;
}
.box-cont:hover img {
    filter: invert(0); /* Example: Inverts colors */
}

.box-cont p{
    margin: 20px 0px 0px;
    font-size: 20px;
    font-weight: 400;
}

/* slider */
.slid-sec{
    padding: 3rem 0rem 3rem;
}
.slid-sec .swiper {
    width: 100%;
    height: 100%;
}

.slid-sec .swiper-slide {
    text-align: center;
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

.slid-sec .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slid-sec .swiper-slide-active {
    transform: scale(1.2);
    background: transparent;
}

.slid-sec .custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    height: 55px;
    width: 55px;
    cursor: pointer;
    border: 2px solid var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slid-sec .custom-prev { left: 10px; }
.slid-sec .custom-next { right: 10px; }

/*  */
.rea-sec{
    padding: 3rem 0rem 3rem;
}

.rea-sec-txt h2{
    font-weight: 400;
    font-size: 96px;
    font-family: var(--font-family-olivera);
    text-align: center;
}

.rea-sec-img iframe {
    max-width: 100%;
    width: 100%;
    min-height:300px;
}


/* gellary */
.gallery-sec{
padding: 3rem 0rem 3rem;
}

/* Filter Menu */
.filter-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter {
    padding: 8px 15px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: var(--primary);
}

.filter:hover,
.filter.active {
    background-color: var(--btn);
    color: var(--seconday);
    border-radius: 100px;
}

/* Gallery Styling */
.gallery-column {
    display: block;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* border-radius: 0px; */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 0px; */
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal Image */
.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Active button with bottom underline */
/* .gallery-sec .filter-menu button.active::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: var(--seconday);
    transition: width 0.3s;
} */

/* Close Button Styling */
.btn-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    filter: invert(1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 0px 0px 0px 30px;
    transition: 0.3s;
}

.btn-close:hover {
    color: var(--btn);
}

/* contact form */
.contact-section {
    margin: 8rem 0rem 3rem;
}

.map-contact {
    min-width: 100%;
}

.map-contact iframe{
    width: 100%;
    min-height: 643px;
    /* border-radius: 10px; */
}

.form-txt {
    min-width: 300px;
    background-color:var(--primary);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-txt h2 {
    color: var(--seconday);
    font-size: 80px;
    font-weight: 400;
    font-family: var(--font-family-olivera);
}

.form-label-one{
    color: var(--seconday);
    font-weight: 600;
    font-size: 18px;
}

.form-txt p{
color: var(--seconday);
font-size: 16px;
}

.form-txt input,
.form-txt textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border:1px solid;
    border-color: #ccc;
    border-radius: 5px;
    color: var(--seconday);
}

.form-txt button {
    width: 100%;
    padding: 10px;
    background-color: var(--seconday);
    color: var(--primary);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.form-txt button:hover {
    background-color: #333;
}

.error-message {
    color: red;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

input.error, textarea.error {
    border-color: red;
}


/* gallery */

 .attraction {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
} 
.attraction-item {
    width: 170px;
    height: 400px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    margin: 15px;
}
.attraction-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}
.attraction-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 1s ease-in-out;
}
.attraction-item h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    white-space: nowrap;
    transition: transform 1s ease-in-out;
    font-size: 30px;
    font-family: var(--font-family-olivera);
    color: var(--primary);
    z-index: 1;
}

.attraction-item .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    color: var(--primary);
    z-index: 1;
    display: block;
}

.attraction-item .details p {
    font-size: 16px;

}
.attraction-item .details h4{
    font-size: 48px;
    font-family: var(--font-family-olivera);
    color: var(--primary);
}

.attraction-item:hover {
    width: auto;
    max-width: 340px;
}

.attraction-item:hover img {
    width: 100%;
    height: 400px;
    transition: width 0.5s ease-in-out;
}

.attraction-item:hover h2 {
    display: none; 
}

.attraction-item:hover .details {
    opacity: 1;
    transform: translateY(0);
}

.slider-two {
    position: relative;
}

.slider-two .custom-slider img {
    width: 100%;
    display: block;
}

/* Custom Arrows */
.slider-two .custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    border: 2px solid var(--btn);
    color: #fff;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-two .custom-prev:hover,
.custom-next:hover {
    background: rgba(0, 0, 0, 0.85);
}

.slider-two .custom-prev {
    left: 20px;
}

.slider-two .custom-next {
    right: 20px;
}

/* Custom Dots */
.custom-slider .slick-dots {
    bottom: -28px;
}

.custom-slider .slick-dots li button:before {
    font-size: 14px;
    color: var(--btn);
    opacity: 1;
}

.custom-slider .slick-dots li.slick-active button:before {
    color: #ffcc00;
}

/* about us */
.abt{
    padding: 3rem 0rem 3rem;
}

.abt-head-txt{
    font-size: 96px;
    line-height: 78px;
    font-weight: 400;
    font-family: var(--font-family-olivera);
    text-align:left;
    width:95%;
}

.abt-para{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-family-karla);
}

/* box shadow */
.box-bg-txt{
    background: url('../media/abt-bg.jpg') no-repeat center center/cover;
    height: 100%;
}

.box-shadow {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 550px;
}

.box-shadow .content{
    position: absolute;
    width: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.box-shadow .content p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--font-family-karla);
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.box-shadow h4{
    font-size: 32px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--font-family-olivera);
}


.box-shadow:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.box-shadow:hover .content p {
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-two .custom-prev,
    .custom-next {
        padding: 8px;
        right: 10px;
    }
    .slider-two .custom-prev {
        left: 10px;
    }
    .slider-two .custom-next {
        right: 10px;
    }
    .custom-slider .slick-dots li button:before {
        font-size: 10px;
    }
    .box-shadow {
        min-height: 280px;
    }
    .test-img {
        margin: auto;
    }

}

@media (max-width: 480px) {
    .slider-two .custom-prev,
    .custom-next {
        padding: 6px;
    }
}


/* footer */
.and-foot-one{
    padding: 3rem 4rem;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.an-foot a{
    color: var(--primary);
    text-decoration: none;
    font-size: 18px;
    font-family: var(--font-family-karla);
}

.an-head a {
    font-size: 30px;
    margin-left: 20px;
}

.an-head-mob{
   font-size: 30px;
}


.foot-icons{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.foot-icons i{
    font-size: 22px;
}
.foot-icons a{
    color: var(--primary);
}

.and-foot-two{
    padding: 3rem 4rem;
    font-family: var(--font-family-karla);
}

.an-foot p{
    margin: 0px;
}

/* attraction */
.attr-sec{
    padding: 3rem 0rem 3rem;
}

/* expriences */
.test-box-one {
    padding: 3rem 0rem;
}

.test-img {
    width: 100%;
    max-width: 75%;
    height: 100%;
    margin-right: auto;
}

.info-box-one {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 50%;
    padding: 20px;
    background: #5C4A3C;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.test-box-one  .swiper {
    width: 100%;
    height: 100%;
}

.test-box-one .swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.custom-navigation {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 75px;
    margin-left: 33%;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.custom-navigation button {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 12vw;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    z-index: 10;
    position: relative;
    margin-left: 20px;
}

.custom-navigation .swiper-button-prev:after{
    content: "";
}

.custom-navigation .swiper-button-next:after{
    content: "";
}

/* add-one-box */
.add-one-box{
    padding: 3rem 0rem 3rem;
    background-color: #5C4A3C;
}

/* meals */
.meal-box{
    padding: 3rem 0rem 3rem;
}

.meals-txt h2{
    font-weight: 400;
    font-size: 96px;
    font-family: var(--font-family-olivera);
}

.meals-txt p{
    font-size: 16px;
    font-family: var(--font-family-karla);
}

.amer-head h2{
    font-weight: 400;
    font-size: 96px;
    font-family: var(--font-family-olivera);
    text-align: center;
}

.amen-box{
    padding: 2rem 0rem 0rem;
}

.exp-box-one img{
    width: 100%;
    max-width: 35%;
    margin: 0px auto;
}

.exp-img{
text-align: center;
}
.exp-img p{
    margin-top: 10px;
}

.exp-box-one p{
    text-align: center;
}

@media (max-width: 1400px) {
    .abt-head-txt{
    width:100%;
}

/*.mobile-actions{*/
/*        display:flex;*/
/*        align-items:center;*/
/*        gap:20px;*/
/*    }*/

/*    .mobile-insta{*/
/*        font-size:40px;*/
/*        color:#fff;*/
/*    }*/

/*    .an-head{*/
/*        display:none;*/
/*    }*/
    
/*    a.floating-book-btn{*/
/*        position:fixed;*/
/*        right:20px;*/
/*        bottom:20px;*/
/*        background:#fff;*/
/*        color:#000;*/
/*        padding:14px 24px;*/
/*        border-radius:40px;*/
/*        font-weight:600;*/
/*        text-decoration:none;*/
/*        z-index:9999;*/
/*        box-shadow:0 6px 18px rgba(0,0,0,0.25);*/
/*    }*/
    
/*}*/

@media (min-width: 769px) and (max-width: 1025px){
    .mobile-actions{
        display:flex;
        align-items:center;
        gap:20px;
    }

    .mobile-insta{
        font-size:40px;
        color:#fff;
    }

    .an-head{
        display:none;
    }
    
    a.floating-book-btn{
        position:fixed;
        right:20px;
        bottom:20px;
        background:#fff;
        color:#000;
        padding:14px 24px;
        border-radius:40px;
        font-weight:600;
        text-decoration:none;
        z-index:9999;
        box-shadow:0 6px 18px rgba(0,0,0,0.25);
    }
}
@media (max-width: 1200px) {
    .mobile-actions{
        display:flex;
        align-items:center;
        gap:20px;
    }

    .mobile-insta{
        font-size:40px;
        color:#fff;
    }

    .an-head{
        display:none;
    }
    
    a.floating-book-btn{
        position:fixed;
        right:20px;
        bottom:20px;
        background:#fff;
        color:#000;
        padding:14px 24px;
        border-radius:40px;
        font-weight:600;
        text-decoration:none;
        z-index:9999;
        box-shadow:0 6px 18px rgba(0,0,0,0.25);
    }
    
    
    .rea-sec-img iframe {
        min-height:350px;
    }

    .hero-section .content h1{
        font-size: 100px;
    }
    .hero-section .content-two h1{
        font-size: 100px;
    }
    .gallery-sec .filter-menu {
        width: 80%;
        margin: auto;
    }
    .form-txt h2 {
        font-size: 65px;
    }
    .meals-txt h2{
        font-size: 65px;
    }
    .amer-head h2{
        font-size: 65px;
    }
    .map-contact iframe{
        min-height: 623px;
    }
    .abt-head-txt{
        font-size: 65px;
    }
    .creat-conf-one h2 {
        font-size: 65px;
        line-height:normal;
    }
    
}

@media (max-width: 992px) {
    .header-stik.sticky {
        padding: 5px 5px;
    }
    
    .menu-btn{
        display: block;
    }
    .navbar-toggler{
        display: none;
    }
    
    .hero-section .content h1{
        font-size: 85px;
    }
    .hero-section .content-two h1{
        font-size: 85px;
    }
    .gallery-sec .filter-menu {
        width: 100%;
        gap: 0px;
        margin: auto;
    }
    .form-txt{
        margin-top: 20px;
        padding: 25px;
    }
    .map-contact iframe{
        min-height: 350px;
    }
    .gallery-column {
        width: 50%;
    }
    .col {
        flex: initial;
        width: 30%;
    }
    .bord-one{
        margin-top: 10px;
    }
   
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .hero-section .content {
        display: block;
    }
    
    .hero-section .content h1{
        font-size: 65px;
    }

    .hero-section .content-two {
        display: block;
    }

    .hero-section .content-two h1{
        font-size: 65px;
    }
    
    .creat-conf-one {
        padding: 0px 0px;
    }
    .header-stik {
        padding: 10px 0px;
    }
    .for-pnt{
        padding: 2.5rem 0rem;
    }
   
    .pnt-list ul {
        display: grid;
        grid-template-columns: auto auto;
        gap: 0px 70px;
        align-items: center; 
        justify-content: center;
    }
    .pnt-list ul li{
        margin-top: 10px;
    } 
    .box-cont{
        margin:15px auto;
    }
    .rea-sec-txt h2{
        font-size: 85px;
    }
    .rea-sec-img iframe {
        min-height:300px;
    }
    .and-foot-one{
        padding: 2rem 0rem;
        text-align: center;
    }
    .foot-icons {
        justify-content: center;
        margin-top: 15px;
    }
    .and-foot-two{
        padding: 2rem 0rem;
        text-align: center;
    }
    .and-foot-two .copy-txt{
        margin-top: 15px;
    }
    .creat-conf{
        padding: 3rem 0rem 2rem;
    }
    .box-sec {
        padding: 2rem 0rem 2rem;
    }
    .slid-sec {
        padding: 2rem 0rem 2rem;
    }
    .rea-sec {
        padding: 2rem 0rem 3rem;
    }
    .gallery-sec{
        padding: 2rem 0rem 2rem;
    }

    .gallery-sec .filter-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-content: center;
        margin-bottom: 20px;
    }
    .form-txt h2 {
        font-size: 60px;
    }
    .meals-txt h2 {
        font-size: 60px;
    }
    .amer-head h2 {
        font-size: 60px;
    }

    .attraction {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .attraction-item {
        width: calc(30% - 10px);
    }

    .attraction-item:hover img {
        width: 100%;
    }
    .info-box-one {
        position:static;
        width: 100%;
        padding: 15px;
        text-align: left;
    }
    .info-box-one {
        width: 90%;
        right: 5%;
        bottom: 5%;
    }
    .custom-navigation {
        margin-top: 5vh;
        gap: 45px;
    }
    .custom-navigation {
        display: flex;
        justify-content: center;
        margin-left: 0%;
    }
    .custom-navigation button {
        font-size: 16px;
        padding: 8px 12px;
        width: 30%;
        margin-left: 0px;
    }
    .col {
        flex: initial;
        width: 50%;
    }
}


@media (max-width: 576px) {
    .hero-section .content h1{
        font-size: 60px;
        bottom: 0px;
        left: 6%;
    }
    .hero-section .content-two h1{
        font-size: 60px;
    }
    .pnt-list ul {
        grid-template-columns: auto;
    }
    .creat-conf-one h2 {
        font-size: 48px;
    }
    .abt-head-txt  {
        font-size: 48px;
    }
    .rea-sec-txt h2{
        font-size: 48px;
    }
    .meals-txt h2{
        font-size: 48px;
    }
    .amer-head h2{
        font-size: 48px;
    }
    .gallery-sec .filter-menu button {
        font-size: 14px;
    }
    .gallery-column {
        width: 100%;
    }
      .attraction-item {
        width: calc(40% - 10px);
    }
    
}

@media (max-width: 500px) {
    .gallery-sec .filter-menu {
        grid-template-columns: repeat(2, 1fr); /* 1 column */
    }
    .form-txt h2 {
        font-size: 50px;
    }
    
}

@media (min-width: 768px) {
    .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
}























