/* TABLE OF CONTENTS */


/* -------------------
1. General
2. Navbar
3. Slider
4. About
5. Rooms
6. Services
7. Team
8. Gallery
9. Price
10. Blog
11. Footer
---------------------- */


/* ------------------- General ------------------- */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Background Color */
    --primary-color: #021832;
    --secondary-color: #caa169;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;
    /* Text Style */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Oswald', sans-serif;
    --primary-text: #021832;
    --secondary-text: #caa169;
    --text-white: #fff;
    --text-black: #151515;
    --text-gray: #e4e4e4;
}

html {
    scroll-padding-top: 7.5rem;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);
}

@media (min-width: 1200px) {
    .room-gallery-container,
    .room-description {
      max-width: 600px;
    }
  }--

a {
    text-decoration: none;
}

nav {
    position: sticky;
    top: 0;
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

section {
    padding: 3.125rem 0;
}

.main-btn {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: transparent;
    border: 0.0625rem solid var(--secondary-color);
    padding: .375rem 1.875rem;
    border-radius: 3.125rem;
    line-height: 1.75rem;
    display: inline-block;
    transition: all .3s ease-out 0s;
}

.main-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

h1 {
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

h3 {
    margin-bottom: 1.875rem;
    line-height: 2.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--primary-text);
    font-family: var(--secondary-font);
}

h3 span {
    color: var(--secondary-color);
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-text);
    font-weight: 500;
    font-family: var(--secondary-font);
}

h6 {
    font-size: .875rem;
    color: var(--primary-text);
    margin-bottom: .9375rem;
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--secondary-font);
}

p {
    font-size: 1rem;
    color: var(--text-black);
    line-height: 1.625rem;
}

.section-title::after {
    content: "";
    background-image: url("../images/title-icon.webp");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    margin-top: -0.9375rem;
    height: .9375rem;
}


/* ------------------- 2 Navbar ------------------- */

.header_wrapper .navbar {
    background-color: var(--bg-white);
    -webkit-box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
}

.header_wrapper .navbar-toggler {
    border: 0;
    color: var(--primary-text);
    line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
    box-shadow: none;
}

.header_wrapper .nav-item {
    margin: 0 .625rem;
}

.header_wrapper .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text);
    display: inline-block;
}

.header_wrapper .nav-item .nav-link:hover,
.header_wrapper .nav-item .nav-link.active {
    color: var(--secondary-text);
}

.navbar.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, .85);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }
    50% {
        top: -15%;
    }
    100% {
        top: 0;
    }
}


/* ------------------- 3 Banner ------------------- */

.banner_wrapper {
    height: 40.625rem;
}

.banner_wrapper .swiper {
    width: 100%;
    height: 100%;
}

.banner_wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner_wrapper .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0.5;
    z-index: 0;
}

.banner_wrapper .swiper-pagination-bullet {
    width: .9375rem;
    height: .9375rem;
    background-color: var(--secondary-color);
    border: 0.0625rem solid var(--bg-white);
}

.banner_wrapper .slide-caption {
    height: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_wrapper .slide-caption p {
    max-width: 37.5rem;
    margin: 0 auto;
    color: var(--text-white);
}

.booking-area {
    background: var(--bg-white);
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    margin-top: -4rem;
    padding: 3.125rem 1.875rem;
    z-index: 99;
    position: relative;
}

.booking-area .form-control,
.booking-area .form-select {
    border: .0625rem solid var(--primary-color);
    height: 2.5rem;
    text-transform: uppercase;
    font-size: .875rem;
    color: var(--text-black);
    font-weight: 500;
}

.booking-area .form-control:focus,
.booking-area .form-select:focus {
    outline: none;
    box-shadow: none;
}


/* ------------------- 4 About ------------------- */

.about_wrapper {
    padding-top: 9.375rem;
}

.about_wrapper p {
    text-align: justify;
}


/* ------------------- 5 Rooms ------------------- */

.rooms_wrapper .room-items {
    position: relative;
    overflow: hidden;
}

.rooms_wrapper .room-items img {
    width: 100%;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;
}

.rooms_wrapper .room-items:hover img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
}

.rooms_wrapper .room-items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 400ms ease-in 0s;
    transition: all 400ms ease-in 0s;
}

.rooms_wrapper .room-items:hover:before {
    opacity: 0.6;
}

.rooms_wrapper .room-item-wrap {
    position: absolute;
    left: 1.875rem;
    right: 1.875rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.rooms_wrapper .room-items .room-content {
    border: .125rem solid var(--bg-white);
    cursor: default;
    padding: 5rem 1.875rem;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
    transition: all 500ms ease-in 0s;
    opacity: 0;
}

.rooms_wrapper .room-items:hover .room-content {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}


/* ------------------- 6 Services ------------------- */

.service-item-wrap {
    background-color: var(--bg-color);
}

.service-menu-area ul li a {
    display: block;
    margin-bottom: 2.8125rem;
}

.service-menu-area .service-icon {
    height: 5.625rem;
    width: 5.625rem;
    background-color: var(--secondary-color);
    line-height: 5.625rem;
    text-align: center;
    border-radius: 100%;
    float: left;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-menu-area .service-icon:hover,
.service-menu-area ul li a.active .service-icon {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 .125rem rgb(34 30 31 / 40%);
}

.service-menu-area ul li:nth-child(1) {
    margin-left: 0.5625rem;
}

.service-menu-area ul li:nth-child(2) {
    margin-left: -2.9375rem;
}

.service-menu-area ul li:nth-child(3) {
    margin-left: -6.375rem;
}

.service-menu-area ul li:nth-child(4) {
    margin-left: -8.8125rem;
}

.service-menu-area ul li a p,
.service-menu-area ul li a h5 {
    padding-left: 6.875rem;
    display: block;
    text-align: left;
}

.service-menu-area ul li a p span {
    color: var(--secondary-color);
}

.counter {
    background-image: url("../images/counter-bg.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3.125rem;
    position: relative;
}

.counter::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    opacity: 0.5;
    z-index: 1;
}

.counter h1,
.counter p {
    position: relative;
    z-index: 3;
    color: var(--text-white);
}


/* ------------------- 7 Team Section ------------------- */

.team_wrapper .card {
    position: relative;
    overflow: hidden;
}

.team_wrapper .team-info {
    background-color: var(--secondary-color);
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 1.25rem;
    margin-bottom: -4.6875rem;
    transition: all 0.3s ease-in-out;
}

.team_wrapper .card:hover .team-info {
    margin-bottom: 0;
}

.team_wrapper .team-info h5,
.team_wrapper .team-info p {
    color: var(--text-white);
}

.team_wrapper .team-info .social-network {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1.25rem;
    margin: 1.25rem -1.25rem -1.25rem;
    background-color: var(--primary-color);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.team_wrapper .social-network li a {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    display: block;
    border-radius: 50%;
    font-size: .9375rem;
    color: var(--text-white);
    border: .0625rem solid var(--bg-white);
    transition: all .3s ease-in-out;
}

.team_wrapper .social-network li a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}


/* ------------------- 8 Gallery Section ------------------- */

.gallery_wrapper .gallery-item {
    box-shadow: 0 0 .1875rem rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.gallery_wrapper .gallery-item::before,
.gallery_wrapper .gallery-item::after,
.gallery_wrapper .gallery-item-content::before,
.gallery_wrapper .gallery-item-content::after {
    content: "";
    width: 50%;
    height: 50%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.gallery_wrapper .gallery-item::after {
    top: 50%;
}

.gallery_wrapper .gallery-item:hover::after {
    top: 0;
    opacity: 1;
}

.gallery_wrapper .gallery-item:hover::before {
    left: 50%;
    opacity: 1;
}

.gallery_wrapper .gallery-item-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.gallery_wrapper .gallery-item:hover .gallery-item-content {
    opacity: 1;
}

.gallery_wrapper .gallery-item-content::before,
.gallery_wrapper .gallery-item-content::after {
    top: 0;
    left: 50%;
    z-index: -1;
}

.gallery_wrapper .gallery-item-content::before {
    top: 50%;
    opacity: 1;
}

.gallery_wrapper .gallery-item-content::after {
    top: 50%;
}

.gallery_wrapper .gallery-item:hover .gallery-item-content::after {
    opacity: 1;
    left: 0;
}


/* ------------------- 9 Pricing Section ------------------- */

.price_wrapper .card {
    box-shadow: 0 .125rem .25rem rgb(34 30 31 /40%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.price_wrapper .card:hover {
    background-color: var(--secondary-color);
}

.price_wrapper .card:hover h3,
.price_wrapper .card:hover h5,
.price_wrapper .card:hover p {
    color: var(--text-white);
}

.price_wrapper .card:hover .main-btn {
    color: var(--text-white);
    border-color: var(--bg-white);
}

.price_wrapper .card .main-btn:hover {
    color: var(--text-black);
    border-color: var(--primary-color);
}


/* ------------------- 10 Blog Section ------------------- */

.blog_wrapper .blog-content {
    margin: -5rem 0 0 4.375rem;
    box-shadow: 0 .125rem .25rem rgb(34 30 31 / 40%);
}

.our-partner-slider {
    background-color: var(--bg-color);
    padding: 3.125rem 0;
}


/* ------------------- 11 Footer ------------------- */

.footer_wrapper {
    background-color: var(--bg-black);
}

.footer_wrapper h5 {
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .contact-info li a {
    color: var(--secondary-color);
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: var(--text-gray);
    font-size: .875rem;
    padding-left: 1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover {
    color: var(--secondary-color);
    margin-left: .625rem;
}

.footer_wrapper .social-network a {
    width: 2.1875rem;
    height: 2.1875rem;
    margin: .5rem;
    line-height: 2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-0.1875rem);
    box-shadow: 0 .6525rem .9375rem 0 rgb(0 0 0 / 10%);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
    color: var(--text-gray);
}

.footer_wrapper .copyright-section {
    background-color: var(--primary-color);
    padding: 1.25rem 0 .3125rem;
    text-align: center;
}

.footer_wrapper .copyright-section a {
    color: var(--secondary-color);
}

.black-shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.primary-background-container {
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 1rem;
}
.w-100 {
    width: 100%;
}

#fcf-form {
    display:block;
}

.fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-color)-color;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.fcf-credit a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: var(--secondary-color)-color;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: var(--secondary-color)-color;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: var(--secondary-color);
    background-color: var(--bg-color);
    border-color: #ffffff;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: var(--secondary-color);;
    border-color: #fafafa;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

.p-description {
    font-size: 1.5rem;
}


/* Reservations gallery */

.swiper {
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  .image__wrapper {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
  }
  
  .image__wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: var(--secondary-color)
  }

  .slides {
    height: auto;
  }
  
  .swiper-wrapper {
    position: relative;
  }

  .swiper-pagination-bullet-active {
    background-color: var(--secondary-color)
  }
  .swiper-pagination-bullet {
    background-color: var(--bg-color)
  }

  /* Rooms Services */

  .room-description {
    flex: 1;
    max-width: 100%;
    padding: 30px;
    background-color: var(--bg-white); /* changed from --secondary-color */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  
  .room-description h2,
  .room-description h3 {
    font-family: var(--secondary-font);
    color: var(--primary-text);
  }
  
  .room-description h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 20px;
  }
  
  .room-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 15px 0;
    color: var(--text-black);
  }
  
  .room-description h4 {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .services-list {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 15px;
  }
  
  .services-list li {
    flex: 0 0 45%;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  
  .services-list i {
    margin-right: 8px;
    color: var(--primary-color);
  }
  
/* For mobile screens, adjust the height and center the images vertically */
@media (max-width: 768px) {
    .swiper {
      width: 90%; /* Adjust the width to 100% for smaller screens */
    }

    .image__wrapper img {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: auto;
        transform: translateY(-50%); /* Center vertically using transform */
        object-fit: contain;
        object-position: center top;
      }
  }


/* Style for each service item */
.service-list li {
    width: calc(25% - 20px); /* 25% width for each service item with 20px margin */
    margin: 10px;
    text-align: center;
}

/* Style for the service item container */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style for the service icon */
.service-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Style for the service name */
.service-item p {
    font-size: 16px;
    text-align: center;
    color: var(--primary-color);
    margin: 0;
}

/* Style the book button */
.book-button {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .book-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
  }
  

.logo-img {
    width: 75px;
    height: 75px;
}

/* .room-gallery-container {
    max-width: 100%;
  } */
  .room-gallery-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .room-gallery-container .main-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .thumbnail-gallery {
    margin-top: 10px;
    background: transparent !important;
    padding: 0;
  }
  
  .thumbnail-gallery .swiper-slide {
    width: 100px !important;
    height: 70px;
    opacity: 0.5;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 8px;
    cursor: pointer;
  }
  .thumbnail-gallery .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--secondary-color); /* or hex #caa169 */
  }
  
  .thumbnail-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }


  /* Index page styles */
  #area .rounded-4 {
    border-radius: 1.5rem;
  }
  
  #area img {
    border-radius: 1.5rem;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  
  #area .main-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .about-image-wrapper {
    height: 100%;
    max-height: 550px;
  }
  
  .object-fit-cover {
    object-fit: cover;
    height: 100%;
  }
  
  .card img {
    border-radius: 0.5rem 0 0 0.5rem;
  }

  .hero-section {
    height: 60vh;
    background-image: url("../images/slider/bg-welcome.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
  }
  
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  }
  
  .hero-section .container {
    position: relative;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--secondary-font); /* If you're using Oswald */
    text-transform: uppercase;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-top: 1rem;
    font-weight: 300;
    color: #f0f0f0; /* Brighter white */
  }
  
  /* Area styles */

  .timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid #cfa96e;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-marker {
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #cfa96e;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #cfa96e;
  }
  
  .timeline-content {
    padding-left: 20px;
  }
  
  .timeline-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 10px;
  }
  
  .timeline-content p {
    font-size: 0.95rem;
    color: #333;
  }

  
/* Styles for screens smaller than 768px (Tablets and below) */
@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    margin-top: 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* Adjust room images to fit the screen */
  .room-items img {
    max-width: 100%;
    height: auto;
  }

  /* Stack service cards vertically */
  .card {
    margin-bottom: 20px;
  }

  .card-body {
    text-align: center;
  }
}

/* Styles for very small screens (phones in portrait mode) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .navbar-brand img {
    width: 75px; /* Adjust logo size */
  }

  /* Adjust navbar to make it more compact */
  .navbar-toggler {
    font-size: 24px;
  }

  .social-network {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer_wrapper .row {
    flex-direction: column;
    align-items: center;
  }

  .footer_wrapper .col-lg-4 {
    text-align: center;
  }
}

  @media (max-width: 768px) {
  .footer_wrapper .row {
    flex-direction: column;
    align-items: center;
  }

  .footer_wrapper .col-lg-4 {
    text-align: center;
  }
}

.info-card-img-wrapper {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.info-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  
  
  