/* Css Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End Css Reset */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #FBB03B;
    --accent-color: #3D3B9C;
    --secondary-color: #FEFBF6;
    --black: #000;
    --white: #fff;
    --text-color: #2C333D;
    --footer-bg: #EAE8F3;
    --button-bg-hover: #2C333D;
    --light-grey: #EFEEF3;
    --dark-grey: #cccccc;
}

html{
    scroll-behavior: smooth;
}

body{
font-family: 'Raleway', sans-serif;
overflow-x: hidden;
}



.link {
    color: var(--primary-color);
}

.link:hover {
    color: var(--accent-color);
}


/* Header */

/* Header styles */


nav {

    width: 100% !important;
    position: fixed;
    z-index: 7;
    top: 0;
    padding: 20px 0;
    background-color: var(--white);
    height: max-content;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: max-content;
}

.logo {
    width: 98px;
}


.header-right {
    display: flex;
    gap: 10px;
    align-items: center;

    font-size: 15px;
    font-weight: 600;

}



#navi-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left a, .header-right a {
    text-decoration: none;
    color: var(--text-color);
}

.header-left a:hover, .header-right a:hover {
    text-decoration: none;
    color: var(--text-color);
}
.header-right ul {
    display: flex;

}

.header-right ul li {
    margin: 0 20px;

}
li a {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
  }

 li a:hover {
    color: var(--primary-color);
  }

 li a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
  }

  li a:hover::before {
    transform: scaleX(1);
  }

  #active-nav {
    color: var(--primary-color) !important;
  }

  @media screen and (min-width: 1000px) {
    .nav-items {
        border-right: 1px solid grey;
        border-left: 1px solid grey;
        height: 30px;
        align-items: center;
        margin-right: 30px;
    }


  }

.head-btn {
    width: 110px;
    height: 40px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    background-color: var(--light-grey);
    border: 1px solid var(--secondary-color);
    padding: 0 20px;
    transition: all .5s ease;
}

.head-btn:hover{
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    color: var(--primary-color);
}



/* Mobile Menu styles */

.mobile-menu {
    cursor: pointer;
    transition: all 1s ease-in-out;
    direction: rtl;
    display: none;
    padding: 20px;
    margin-top: 5px;
}



#hamburger{
    position: relative;
}



/* header responsive styles */

@media screen and (max-width: 1000px) {

    nav {
        height: 110px;
        padding: 0;

    }

    #closeMenu {
        color: var(--white) !important;
    }

    .header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: max-content;
        padding: 12px 0;
    }

    .mobile-menu {
        display: block;
    }

    .nav-items > .list-items  {
        color: var(--white) !important;
      }

    .nav-items > .list-items > #active-nav {
        color: var(--primary-color) !important;
      }

    .nav-items {
        flex-direction: column;
        margin-bottom: 30px;

    }

    .nav-items > .list-items {
        padding-bottom: 40px;
    }
    .header-link {
        color: var(--white) !important;
    }
    #navi-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100vh;
        color: var(--white);
        background-color: var(--text-color);
        transition: all 0.1s ease-in-out;
    }


    .hide {
        display: none;
    }

    #navi-menu.active{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh;
        color: var(--primary-color);
        background-color: var(--text-color);
        overflow-x: hidden;
    }

    .top{
        top: 10px;
        position: relative;
        width: 35px !important;
        transform: rotate(-45deg);
    }

    .middle {
        position: relative;
        background-color: transparent;
        translate: 300%;
    }

    .bottom {
        top: -6px;
        width: 35px !important;
        position: relative;
        transform: rotate(45deg);
    }

    .form-switch .form-check-input {

    margin-right: 10px;
    }

    .form-check-input {
        transform: none;
    }

    .form-switch .form-check-input {
        height:30px;
        width: 45px;
    }


    .form-switch .form-check-input:checked {
        height:30px;
        width: 45px;

    }

}
/* End Header */

/* Hero section */

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    /* Adjust this value as needed */
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    gap: 5px;
}

.carousel {
    margin-top: 140px;
}

.carousel .item {
    height: 610px;
}

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

.carousel-caption {
    top: 50%;
    bottom: unset;
    text-align: center;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%); /* Combine the two transforms */
}


.hero-h1 {
    font-size: 3vw;
    font-family: 'Cardo', serif;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.hero-p {
    font-size: 1.2vw;
    color: var(--primary-color);
    text-align: center;
    font-weight: 400;
    margin-bottom: 15px;
}

#submit-main-btn {
    background-color: var(--primary-color);
    border: none;
    width: 180px;
    color: var(--white);
    height: 40px;
    border-radius: 10px;
    transition: .3s all ease-in-out;
}

#submit-main-btn:hover {
    background-color: var(--accent-color);
    border: none;
}

/* Adjustments for Mobile Screens */
@media (max-width: 768px) {
    .carousel {
        margin-top: 80px;
    }

    .carousel .item {
        height: 400px;
    }

    .carousel-caption {
        width: 90%;
        top: 60%;
    }

    .hero-h1 {
        font-size: 5vw;
    }

    .hero-p {
        font-size: 3vw;
    }

    #submit-main-btn {
        width: 160px;
        height: 35px;
        font-size: 14px;
    }
}

/* Adjustments for Smaller Mobile Screens */
@media (max-width: 480px) {
    .carousel {
        margin-top: 60px;
    }

    .carousel .item {
        height: 300px;
    }

    .carousel-caption {
        width: 95%;
        top: 65%;
    }

    .hero-h1 {
        font-size: 6vw;
    }

    .hero-p {
        font-size: 2vw;
    }

    #submit-main-btn {
        width: 140px;
        height: 30px;
        font-size: 12px;
    }
}

/* End Hero Section */


/* About Section */

.about-section {
    height: max-content;
    padding: 100px 0;
}

.home-about-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-abt-img {
    width: 550px;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

#left-abt-col {
    display: flex;
    justify-content: center;
}

#right-abt-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.header-h2 {
    font-size: 30px;
    color: var(--accent-color);
    font-family: 'Cardo', serif;
}


.text-parag {
    color: grey;
    font-size: 15px;
    line-height: 25px;
    font-family: 'Raleway', sans-serif;
}


.yellow-btn {
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0 20px;
    transition: all .5s ease;
}

.yellow-btn:hover{
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    color: var(--primary-color);
    scale: 1.05;
}




/* About Responsive styles */
@media screen and (max-width: 1200px) {


    .home-abt-img {
        width: 450px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}


@media screen and (max-width: 1000px) {
    #about-cont {
        padding: 0 40px;
    }

    .home-abt-img {
        width: 400px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    #left-abt-col {
        display: flex;
        justify-content: center;
        text-align: center;
        margin: auto;
        align-items: center;
    }

    #right-abt-col {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 700px) {
    #about-cont {
        padding: 0 40px;
    }

    .home-abt-img {
        width: 400px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 500px) {
    #about-cont {
        padding: 0 40px;
    }

    .home-abt-img {
        width: 300px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}
/* End About Section */


/* Featured Section */

.featured-room-section {
    height: max-content;
    padding: 100px 30px;
    background-color: var(--light-grey);
}

.paragraph {
    font-size: 15px;
    margin-bottom: 30px;
}

#featured-header {
    margin-bottom: 20px;
}

.card-title-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-img {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-bottom: 10px;
    flex-direction: column;

}

#card-img-1 {
    background: url(../media/Rooms/025.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
}

#card-img-2 {
    background: url(../media/Rooms/018.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
}

#card-img-3 {
    background: url(../media/Rooms/003.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 400px;
    border-radius: 20px;
}

.card-info {
    background-color: #ffffffce;
    height: 100px;
    width: 95%;
    border-radius: 10px;
    padding: 10px;
    transition: all .2s ease-in-out;
}

.card-info:hover {
    cursor: pointer;
    scale: .95;
}

.card-info > h3 {
   font-family: 'Cardo', serif;
    color: var(--accent-color);
    margin-left: 5px;
    font-size: 22px;
}

.icon-info {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--text-color);
}

.icon-facilities {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto 5px;
}
.card{
    width: 320px;
    border-radius: 10px;
    margin: 30px 0;
}

.card > img {
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}



@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .card-img{
        width: 370px;
    }
    .icon-facilities {
        font-size: 13px;
    }

}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .card-img{
        width: 305px;
    }


}

@media screen and (max-width: 991px) {
    .card{
        width: 420px;
        margin-bottom: 20px;
    }

    .icon-info {
        font-size: 11px;
        gap: 2px;

    }
    #featured-row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #featured-header {
        text-align: center;
        margin-bottom: 20px;
    }

    #card-col {
        display: flex;
        width: 100%;
        margin: 20px 0;
        justify-content: center;
    }

    .icon-facilities {
        font-size: 10px;
    }

    .icon-facilities img {
        object-fit: contain !important;
        width: 17px;
        height: 29px;
    }

    .card-info > h3 {
         font-size: 18px;
     }



}

@media screen and (max-width: 381px) {
    .card-img {
        width: 120%;
     }
}


.ft-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


/* Featured Section End */

/* Beach Section */
.beach-section {
    height: max-content;
    padding: 80px 20px;
    width: 100vw;
}

#beach-row > div {
    margin-bottom: 60px;

}


#left-beach-section, #right-beach-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#right-beach-section > button {
    width: 180px ;
}



.beach-img {
    width: 600px;
    border-radius: 10px;
}


@media screen and (min-width: 1190px) and (max-width: 1390px) {
    .beach-img {
        width: 500px;
        border-radius: 10px;
    }
}


@media screen and (max-width: 1190px) {
    .beach-img {
        width: 400px;
        border-radius: 10px;
    }

    #left-beach-section{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 450px) {
    .beach-img {
        width: 300px;
        border-radius: 10px;
    }

}


/* Beach End */


/* Video Section */

.video-section{

    width: 100vw;
    height: 700px;
    background: url("../media/Beach/DSC_3468.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.7);
    display: flex;


}

#video-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

}

.vimeo-launch {
    display: block;
    background-color: transparent;
    border: none;
    width: 200px;
    height: 200px;
    transition: all .4s ease-in;
}

.vimeo-launch:hover {
 scale: 1.05;
}

.yellow-header {
    font-size: 35px;
    color: var(--primary-color);
}


@keyframes close-before {
    0% { margin-top: 0 }
    100% { margin-top: -10px }
  }

  @keyframes close-after {
    0% { margin-top: -10px }
    100% { margin-top: 0px }
  }

  .vimeo-launch:before {
    background: white;
    box-shadow: inset 0 0 0 4px white, inset 0 0 0 8px #62abfc;
    color: #3091fb;
    top: 0;
  }
  .vimeo-launch:after {
    background: #62abfc;
    box-shadow: inset 0 0 0 4px #62abfc, inset 0 0 0 8px white;
    color: white;
    top: 100%;
  }
  .vimeo-launch:hover:before {
    top: -100%;
  }
  .vimeo-launch:hover:after {
    top: 0;
  }

  #vimeo-pop-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.75);
  }
  #vimeo-pop-container div {
    height: 450px;
    width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #vimeo-pop-container .vimeo-close {
    background-color: transparent;
    border: 3px solid white;
    cursor: pointer;
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 100%;
    right: 0;
    transition: 200ms background-color;
  }
  #vimeo-pop-container .vimeo-close:before, #vimeo-pop-container .vimeo-close:after {
    content: "";
    background: white;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(45deg);
    transition: 500ms all;
  }
  #vimeo-pop-container .vimeo-close:before {
    height: 20px;
    width: 2px;
    margin-left: -1px;
    margin-top: -10px;
  }
  #vimeo-pop-container .vimeo-close:after {
    height: 2px;
    width: 20px;
    margin-left: -10px;
    margin-top: -1px;
  }
  #vimeo-pop-container .vimeo-close:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
  #vimeo-pop-container .vimeo-close.closing:before {
    transform: rotate(450deg);
    margin-left: -2px;
    margin-top: 0;
    -webkit-animation: close-before 500ms ease 500ms 1 forwards;
            animation: close-before 500ms ease 500ms 1 forwards;
  }
  #vimeo-pop-container .vimeo-close.closing:after {
    transform: rotate(540deg);
    margin-left: -11px;
    margin-top: -10px;
    -webkit-animation: close-after 500ms ease 500ms 1 forwards;
            animation: close-after 500ms ease 500ms 1 forwards;
  }
  #vimeo-pop-container iframe {
    border: 6px solid white;
    height: 100%;
    width: 100%;
  }


@media screen and (max-width: 1000px) {
    #vimeo-pop-container div {
        height: 450px;
        width: 500px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .yellow-header {
        font-size: 30px;
      }

      h2 {
        font-size: 27px !important;
      }
}

@media screen and (max-width: 700px) {
    #vimeo-pop-container div {
        height: 350px;
        width: 350px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .gray-header {
        font-size: 35px;
        color: var(--light-grey);
    }
}

/* Video Section End */

/* Review Section */

.review-section {
    height: max-content;
    padding: 80px 20px;
    background-color: var(--light-grey);
}

#review-col {
    overflow-x: hidden;
}

.gg-rvw {
    height: 850px;
}

#elf {
    position: relative;
    z-index: 1;
}


@media screen and (max-width: 1500px) {
    .gg-rvw {
        height: 900px;
    }
}

@media screen and (max-width: 1200px) {
    .gg-rvw {
        height: 1300px;
    }
}

@media screen and (max-width: 800px) {
    .gg-rvw {
        height: 1700px;
    }
}

@media screen and (max-width: 750px) {
    .gg-rvw {
        height: 1700px;
    }
}

@media screen and (max-width: 650px) {
    .gg-rvw {
        height: 1700px;
    }
}

@media screen and (max-width: 560px) {
    .gg-rvw {
        height: 2900px;
    }
}

@media screen and (max-width: 400px) {
    .gg-rvw {
        height: 3100px;
    }
}
/* Review End */

/* Footer */
.footer{
    height: max-content;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100vw;
    background-color: var(--text-color);
}



.footer-logo{
    width: 100px;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 12px;
    text-align: justify;
    width: 90%;
    color: var(--white);
}

.footer-icons {
    display: flex;
    gap: 10px;
}

.footer-icons > li:focus {
    text-decoration: none;
}

.footer-header {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);

}


.footer-link > a {
    color: var(--primary-color);
}

.footer-link > a:hover {
    color: var(--white);
}


#copyright-col {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    text-align: center;
}

.copyright-text {
    color: var(--white);
}


.footer-nav {
    color: var(--white);
}

.footer-link {
    color: var(--primary-color);
}

.footer-link:hover {
    color: var(--white);
}



@media screen and (max-width: 990px) {

    #footer-row {
        display: flex;
        gap: 30px;
    }




}

/* End Footer */

/* back top button */
#btn-back-to-top {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    display: none;
  }



  /* About Page */

  .breadcrumb-section1 {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-top: 100px;
    height: 400px;
    background: url("../media/Outdoors/airport.jpeg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .breadcrumb-section {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-top: 100px;
    height: 400px;
    background: url("../media/Outdoors/airport.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }



 #breadcrumb-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title {
    color: var(--white);
    font-size: 40px;
    opacity: .9;
}

@media screen and (max-width: 700px) {

    .breadcrumb-section1 {
        padding: 100px 0;
        width: 100vw;
        height: 300px;
        background: url("../media/Outdoors/airport.jpeg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
        display: flex;
      }

    .breadcrumb-section {
        padding: 100px 0;
        width: 100vw;
        height: 300px;
        background: url("../media/Outdoors/airport.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
        display: flex;
      }



    .page-title {
        color: var(--white);
        font-size: 30px;
        opacity: .9;
    }
}



/* About page main section */

.about-section {
    height: max-content;
    padding: 80px 20px;
}

#left-abt-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.split-images {
    width: 600px;
    border-radius: 10px;
}

.about-text-parag {
    color: grey;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    font-family: 'Raleway', sans-serif;
}

@media screen and (max-width: 1300px) {
    .split-images {
        width: 320px;
        border-radius: 10px;
    }

    #left-abt-col  {
        margin-bottom: 50px;
    }
}


/* About page main section end */

/* Gallery Page styles */

.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-video {
    margin-bottom: 40px;
}


.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

@media screen and (max-width: 900px) {
    .grid-wrapper div {
        grid-row: span 2;
        grid-column: span 2;
    }

}

/* Gallery page end */


/* contact page */

 .contact-info-ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-size: 15px;
}

.contact-link {
    margin-left: 15px;
}

.contact-hr {
    width: 50%;
}

.socials {
    display: flex;
    gap: 15px;
}




@media screen and (max-width: 700px) {


.g-map {
    max-width: 400px;
}

}

@media screen and (max-width: 400px) {


    .g-map {
        max-width: 300px;
    }

    }



/* contact page end */

/* Rooms & Suites Page */
.rooms-n-suites {
    height: max-content;
    padding: 80px 20px;
    background-color: var(--light-grey);

}

#innerPageHeading {
    margin-bottom: 30px;
}

#room-row {
    padding: 20px;
    background-color: var(--white);
    border-radius: 20px;
    margin-bottom: 70px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.room-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#left-room-col {
    padding: 20px;
    display: flex;
    align-items: center;
}

#right-room-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

#right-room-col h2 {
    color: var(--primary-color);
}

.price {
    font-size: 16px;
    color: var(--text-color);
}

.room-page-imgs {
    width: 100%;
    border-radius: 10px;
    transition: .4s all ease-in-out;
}

@media screen and (max-width: 1500px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
    }


}

@media screen and (max-width: 1200px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    #right-room-col {
        padding: 0;
    }


}

@media screen and (max-width: 1000px) {
    .room-items {
        flex-direction: column;
        margin: auto;
        gap: 0;
    }
    #left-room-col {
        padding: 0;
        display: flex;
        align-items: center;
    }

}


@media screen and (max-width: 700px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 30px;
    }


}

@media screen and (max-width: 500px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}


@media screen and (max-width: 450px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}

@media screen and (max-width: 380px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}

@media screen and (max-width: 350px) {
    .room-page-imgs {
        width: 100%;
        border-radius: 10px;
    }
}

.facilities-main {
    display: flex;
    gap: 30px;
}



.facilities {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 16px;
    gap: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.facilities-btns {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}



.outline-btn {
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 0 20px;
    transition: all .5s ease;
}



.outline-btn:hover {
    color: var(--white);
    scale: 1.08;
    background-color: var(--primary-color);
}

.header-text {
   margin-bottom: 20px;
}

.facilities > .fa-solid {
    width: 20px;

}

.facilities > p {
    color: var(--text-color);
}

#right-room-col > button {
    margin-top: 30px;
}

#right-room-col > button:hover {
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.facilities img {
    object-fit: contain !important;

}

@media screen and (max-width: 1000px) {

    #left-room-col {
        padding: 20px;
    }

    #right-room-col {
        padding: 20px;
        padding-top: 0;
        margin-bottom: 20px;
    }

    #room-row{
        padding: 30px;
    }

     .facilities img {
        object-fit: contain !important;
        width: 22px;
        height: 30px;
    }

    .header-text {
        font-size: 22px !important;
    }

    .facilities > p {
        font-size: 12px;
    }

}
/* Rooms & Suites End */

/* Amenities Page */

.amenities-section {
    height: max-content;
    padding: 100px 0;
}

#amenities-row {
    margin-bottom: 100px;
}

.amenities-imgs {
    width: 600px;
    height: 400px;
    object-fit: cover;
    display: grid;
    margin: auto;
    border-radius: 20px;
}


/* Amenities responsive styles */
@media screen and (max-width: 1400px) {
    .amenities-imgs {
        width: 500px;
    }
}

@media screen and (max-width: 1200px) {
    .amenities-imgs {
        width: 450px;
    }
}

@media screen and (max-width: 990px) {

    #amenities-row {
        padding: 20px;
    }

    div > .amenities-imgs {
        display: grid;
        align-items: center;
    }

    .amenities-imgs {
        max-width: 320px;
    }

 .order1 {
    order: 1;
    margin-bottom: 50px;
 }

 .order2 {
    order: 2;
 }
}


/* amenities responsive styles end */
/* Amenities end */

/* pricing page styles */
.table-container {
    width: 700px;
    margin: 20px auto;
  }

  @media screen and (max-width: 700px) {
    .table-container {
        width: 300px;
        margin: 20px auto;
      }
  }
  .table-header {
    background-color: #FBB03B;
    color: white;
    font-weight: bold;
    text-align: left;
    padding: 8px;
    display: flex;
  }

  .item, .unit-price {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px;
  }

  .item-row {
    display: flex;
  }
/* pricing page style end */