@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  background-color: #242830;
  
}
img{
  max-width:100%;
  height:auto
}
:root {
    --primary-color: #CA984A;
    --dark-color: #242830;
    --text-color: #7a7a7a;
    --white: #ffffff;
}
body {
    font-family: "EB Garamond", sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    background: #242830;
    backdrop-filter: blur(12px);
    padding: 10px 0;
    z-index: 999;
}
.navbar.shadow {
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}
.navbar-brand img {
    width: 100px;
    height: auto;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar-nav {
    align-items: center;
}
.navbar-nav .nav-item {
    position: relative;
}
.navbar-nav .nav-link {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--white);
    padding: 10px 0;
}
.dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 12px;
    margin-top: 18px;
    background: #242830;
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    color: var(--white);
}
.dropdown-item img {
    width: 25px;
    height: 25px;
}
.dropdown-item:hover {
    background: rgba(176,141,87,.12);
    color: var(--primary-color);
}
.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 14px 38px;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(202,152,74,.25);
}
.book-btn:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(202,152,74,.35);
}
.navbar-toggler {
    border: none;
    padding: 8px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    width: 28px;
    height: 28px;
}

/* HOME CAROUSEL */
.home-carousel {
    position: relative;
}
.home-carousel .carousel-item {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.home-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(.5)
        contrast(1.1)
        saturate(.85)
        sepia(.08);
}
.home-carousel .carousel-caption {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    max-width: 90%;
    text-align: center;
    z-index: 3;
}
.home-carousel .carousel-caption p {
    color:var(--primary-color);
    font-family:"EB Garamond",sans-serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:25px;
}
.home-carousel .carousel-caption h6 {
    color:var(--white);
    font-family:"Plus Jacarta",serif;
    font-size:72px;
    line-height:1.12;
    font-weight:700;
    letter-spacing:-1px;
    text-transform:capitalize;
    margin-bottom:35px;
}
.home-carousel .book-btn {
    padding: 16px 42px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    background-size: 22px;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary-color);
}

/* ABOUT SECTION */
.about-section{
    background: #242830;
    color: #fff;
    overflow: hidden;
}
.about-images{
    position: relative;
    min-height: 620px;
}
.about-img-main{
    width: 85%;
    height: 560px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    filter: brightness(.82) contrast(1.05);
}
.about-img-small{
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 48%;
    height: 270px;
    object-fit: cover;
    border-radius: 18px;
    border: 8px solid #242830;
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
    filter: brightness(.88);
}
.about-images img:hover{
    transform: translateY(-8px);
}
.section-heading span{
    font-family:"Outfit", sans-serif;
    color:var(--primary-color);
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
}
.section-heading h2{
    font-family:"Playfair Display", serif;
    font-size:3.2rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
    color:var(--white);
}
.about-section p{
    font-family:"Outfit", sans-serif;
    color:rgba(255,255,255,.72);
    font-size:17px;
    font-weight:300;
    line-height:1.9;
    margin-bottom:20px;
}
.about-section .book-btn{
    margin-top: 10px;
    font-family:"Outfit",sans-serif;
}
.section-heading span::after{
    content: "";
    display: inline-block;
    width: 55px;
    height: 2px;
    background: var(--primary-color);
    margin-left: 14px;
    vertical-align: middle;
}

/*  FACILITIES */
.facilities-section{
    background:#1F2229;
    color:var(--white);
}
.facilities-section .section-heading span{
    font-family:"Outfit",sans-serif;
    color:var(--primary-color);
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    display:inline-block;
    margin-bottom:15px;
}
.facilities-section .section-heading h2{
    font-family:"Playfair Display",serif;
    color:var(--white);
    font-size:3.2rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
}
.facilities-section .section-heading p{
    max-width:650px;
    margin:20px auto 0;
    color:rgba(255,255,255,.70);
    font-family:"Outfit",sans-serif;
    font-size:17px;
    font-weight:300;
    line-height:1.9;
}
.facility-card{
    background:#242830;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    height:100%;
    border:1px solid rgba(202,152,74,.08);
}
.facility-card:hover{
    transform:translateY(-10px);
    border-color:rgba(202,152,74,.4);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}
.facility-icon{
    width:85px;
    height:85px;
    margin:0 auto 30px;
    border-radius:50%;
    background:rgba(202,152,74,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-color);
    font-size:2rem;
}
.facility-card:hover .facility-icon{
    background:var(--primary-color);
    color:#fff;
    transform:rotate(8deg);
}
.facility-card h4{
    font-family:"Playfair Display",serif;
    font-size:1.45rem;
    font-weight:600;
    margin-bottom:15px;
    color:#fff;
}
.facility-card p{
    font-family:"Outfit",sans-serif;
    color:rgba(255,255,255,.68);
    font-size:16px;
    font-weight:300;
    line-height:1.8;
    margin:0;
}

/* HOME-ROOMS */
.rooms-section {
    background: #242830;
    padding: 70px 0;
}
.rooms-section .section-heading span{
    font-family:"Outfit",sans-serif;
    color:var(--primary-color);
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
}
.rooms-section .section-heading h2{
    color:var(--white);
    font-family:"Playfair Display",serif;
    font-size:42px;
    font-weight:700;
    line-height:1.25;
}
.rooms-section .section-heading p{
    font-family:"Outfit",sans-serif;
    color:rgba(255,255,255,.65);
    font-size:17px;
    font-weight:300;
    line-height:1.9;
}
.room-card {
    background: #1F2229;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.room-card:hover {
    transform: translateY(-5px);
}
.room-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-card:hover .room-image img {
    transform: scale(1.03);
}
.room-content {
    padding: 35px 30px;
}
.room-content h4{
    color:var(--white);
    font-family:"Playfair Display",serif;
    font-size:24px;
    font-weight:600;
}
.room-content p{
    font-family:"Outfit",sans-serif;
    color:rgba(255,255,255,.65);
    font-size:15px;
    font-weight:300;
    line-height:1.8;
}
.room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.room-info span {
    color: var(--primary-color);
    font-size: 14px;
    position: relative;
    font-family:"Outfit",sans-serif;
    font-weight:400;
}
.room-info span:not(:last-child)::after {
    content: "•";
    color: rgba(255,255,255,.4);
    margin-left: 10px;
}
.room-content .book-btn {
    padding: 12px 28px;
    font-size: 14px;
    text-transform: uppercase;
    font-family:"Outfit",sans-serif;
    font-weight:500;
}
.rooms-carousel .owl-stage {
    display: flex;
}
.rooms-carousel .owl-item {
    display: flex;
}
.rooms-carousel .item {
    width: 100%;
}
.rooms-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}
.rooms-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.3) !important;
    display: block;
    border-radius: 50%;
    margin: 5px;
}
.rooms-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 10px;
}

/* Global Section Button */
.section-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.section-btn .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 14px 38px;
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(202,152,74,.25);
}
.section-btn .book-btn:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(202,152,74,.35);
}

/* TESTIMONILAS */
.testimonial-section {
    background:#1F2229;
    padding:90px 0;
}
.testimonial-card {
    background:#242830;
    padding:50px 35px 35px;
    text-align:center;
    position:relative;
    min-height:300px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow:hidden;
    border:1px solid rgba(202,152,74,.15);
}
.testimonial-card:hover {
    transform:translateY(-8px);
    border-color:rgba(202,152,74,.5);
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}
.testimonial-stamp {
    width:70px;
    height:70px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary-color);
    color:#242830;
    border-radius:50%;
    font-size:34px;
    box-shadow:0 15px 30px rgba(202,152,74,.25);
}
.testimonial-stamp i {
    line-height:1;
}
.testimonial-card p {
    color:rgba(255,255,255,.85);
    font-family:"Outfit",sans-serif;
    font-size:16px;
    font-weight:300;
    letter-spacing:.2px;
    line-height:1.9;
    margin:0 auto 30px;
    max-width:420px;
}
.testimonial-author h5 {
    color:#fff;
    font-family:"Playfair Display",serif;
    font-size:21px;
    font-weight:600;
    margin-bottom:8px;
}
.testimonial-author span {
    color:var(--primary-color);
    font-family:"Outfit",sans-serif;
    font-size:14px;
    font-weight:400;
    letter-spacing:.5px;
}
.testimonial-carousel .item {
    padding:15px;
}
.testimonial-carousel .owl-stage {
    display:flex;
}
.testimonial-carousel .owl-item {
    display:flex;
}
.testimonial-carousel .owl-item .item {
    width:100%;
}
.testimonial-carousel .owl-dots {
    text-align:center;
    margin-top:35px;
}
.testimonial-carousel .owl-dot span {
    width:10px;
    height:10px;
    background:rgba(255,255,255,.25);
    display:block;
    border-radius:50%;
    margin:5px;
}
.testimonial-carousel .owl-dot.active span {
    width:35px;
    border-radius:20px;
    background:var(--primary-color);
}

/* GALLERY */
.home-gallery {
    background:#242830;
    padding:90px 0;
}
.home-gallery .section-heading span {
    color:var(--primary-color);
    font-family:"Outfit",sans-serif;
    font-size:14px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
}
.home-gallery .section-heading h2 {
    color:#fff;
    font-family:"Playfair Display",serif;
    font-size:42px;
    font-weight:600;
    line-height:1.25;
    margin:15px 0;
}
.home-gallery .section-heading p {
    color:rgba(255,255,255,.65);
    font-family:"Outfit",sans-serif;
    font-size:16px;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}
.home-gallery .gallery-card {
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
    border-radius:18px;
    filter:brightness(.9);
}
.home-gallery .gallery-carousel .item {
    position:relative;
    overflow:hidden;
    border-radius:18px;
}
.home-gallery .gallery-carousel .item:hover .gallery-card {
    transform:scale(1.08);
    filter:brightness(.75);
}
.home-gallery .gallery-carousel .item::after {
    content:"";
    position:absolute;
    inset:10px;
    border:1px solid rgba(202,152,74,.5);
    border-radius:14px;
    opacity:0;
    transform:scale(.95);
    pointer-events:none;
}
.home-gallery .gallery-carousel .item:hover::after {
    opacity:1;
    transform:scale(1);
}
.home-gallery .gallery-carousel .owl-stage {
    display:flex;
}
.home-gallery .gallery-carousel .owl-item {
    display:flex;
}
.home-gallery .gallery-carousel .owl-item .item {
    width:100%;
}
.home-gallery .gallery-carousel .owl-dots {
    text-align:center;
    margin-top:35px;
}
.home-gallery .gallery-carousel .owl-dot span {
    width:10px;
    height:10px;
    background:rgba(255,255,255,.25);
    display:block;
    border-radius:50%;
    margin:5px;
}
.home-gallery .gallery-carousel .owl-dot.active span {
    width:35px;
    border-radius:20px;
    background:var(--primary-color);
}
.home-gallery .section-btn {
    text-align:center;
    margin-top:45px;
}

/* COVER */
.cover {
    position: relative;
    overflow: hidden;
}
.cover img {
    width:100%;
    height:50vh;
    object-fit:cover;
    filter:
        brightness(.45)
        contrast(1.1)
        saturate(.85);
    position: relative;
}
.cover-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}
.cover-title {
    color:#fff;
    font-family:"EB Garamond", serif;
    font-style: italic;
    font-size:clamp(1.8rem,3.5vw,3.5rem);
    font-weight:600;
    line-height:1.2;
    letter-spacing:.5px;
    margin:0;
    text-transform:capitalize;
    text-shadow:0 8px 25px rgba(0,0,0,.45);
    position:relative;
}
.cover-title::after {
    content:"";
    display:block;
    width:70px;
    height:2px;
    background:var(--primary-color);
    margin:25px auto 0;
}

/* FOOTER */
.footer{
    background:#1c2028;
    color:#c7ccd3;
    padding:80px 0 10px;
    overflow:hidden;
}
.footer .row{
    align-items:flex-start;
}
.footer .row > div{
    display:flex;
    flex-direction:column;
}
.footer-brand{
    background:#242933;
    height:100%;
    padding:50px 35px;
    text-align:center;
    border-top:3px solid var(--primary-color);
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}
.footer-logo{
    width:110px;
    margin:0 auto 25px;
}
.footer-description{
    color:rgba(255,255,255,.65);
    font-family:"Outfit",sans-serif;
    font-size:15px;
    font-weight:300;
    line-height:1.9;
    margin-bottom:30px;
}
.footer-title{
    color:var(--primary-color);
    font-family:"Playfair Display",serif;
    font-size:20px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:25px;
    text-align:center;
}
.footer-title::after{
    content:"";
    display:block;
    width:45px;
    height:2px;
    background:var(--primary-color);
    margin:12px auto 0;
}
.footer-link{
    color:#c7ccd3;
    text-decoration:none;
    font-family:"Outfit",sans-serif;
    font-size:15px;
}
.footer-link:hover{
    color:var(--primary-color);
}
.footer-list{
    list-style:none;
    padding:0;
    margin:0 auto;
}
.footer-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    color:rgba(255,255,255,.65);
    font-family:"Outfit",sans-serif;
    font-size:15px;
    line-height:1.7;
}
.footer-list i{
    color:var(--primary-color);
    margin-top:5px;
    min-width:18px;
}
.footer .col-lg-2 .footer-list{
    text-align:center;
}
.footer .col-lg-2 .footer-list a{
    display:block;
    margin-bottom:12px;
}
.footer-socials{
    display:flex;
    justify-content:center;
    gap:12px;
}
.footer-socials a{
    width:44px;
    height:44px;
    border:1px solid rgba(202,152,74,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-color);
}
.footer-socials a:hover{
    background:var(--primary-color);
    color:#fff;
    transform:translateY(-5px);
}
.footer iframe{
    width:100%;
    height:240px;
    border:0;
    border-radius:12px;
    filter:saturate(.8);
}
.footer-divider{
    border:0;
    border-top:1px solid rgba(202,152,74,.35);
    margin:45px 0 20px;
}
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}
.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.45);
    font-family:"Outfit",sans-serif;
    font-size:14px;
}
.powered img{
    width:100px;
    height:auto;
    opacity:.8;
}
.powered img:hover{
    opacity:1;
}

/* ABOUT.HTML */
/* TOP COVER */
.top-cover {
    margin: 0px;
    padding: 0px;
    position: relative;
}
.top-cover-img {
    height: 50vh;
    width: 100% !important;
    filter: brightness(0.5);
    object-fit: cover;
    position: relative;
}
.top-cover .container {
    position: absolute;
    z-index: 2;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 50px);
    text-align: center;
    color: rgba(255,255,255,0.85);
}
.top-cover-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}
.breadcrumb-item {
    font-size: 1rem;
}
.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}
.breadcrumb-item a:hover {
    color: #ffc107;
}
.breadcrumb-item.active {
    color: #ffc107;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

/* ROOMS.HTML */
.room-section{
    background:#f8f6f1;
    padding:100px 0;
    overflow:hidden;
}
.room-subtitle{
    display:inline-block;
    color:var(--primary-color);
    font-family:"Outfit",sans-serif;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.room-subtitle::before,
.room-subtitle::after{
    content:"";
    display:inline-block;
    width:40px;
    height:1px;
    background:var(--primary-color);
    margin:0 15px;
    vertical-align:middle;
}
.room-title{
    color:#242830;
    font-family:"Playfair Display",serif;
    font-size:48px;
    line-height:1.25;
    font-weight:600;
}
.room-section .row.align-items-center{
    background:#fff;
    overflow:hidden;
    margin-bottom:70px!important;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}
.room-section .row.align-items-center:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 90px rgba(0,0,0,.14);
}
.room-img{
    width:100%;
    height:430px;
    object-fit:cover;
}
.col-lg-6:has(.room-img){
    overflow:hidden;
}
.room-section .row:hover .room-img{
    transform:scale(1.05);
}
.room-content{
    padding:55px;
}
.room-content h3{
    color:#242830;
    font-family:"Playfair Display",serif;
    font-size:32px;
    font-weight:600;
    margin-bottom:20px;
}
.room-content h3::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background:var(--primary-color);
    margin-top:15px;
}
.room-content p{
    color:#6d727b;
    font-family:"Outfit",sans-serif;
    font-size:16px;
    line-height:1.9;
    margin-bottom:30px;
}
.room-info{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    padding:25px 0;
    border-top:1px solid rgba(202,152,74,.25);
    border-bottom:1px solid rgba(202,152,74,.25);
}
.room-info div{
    min-width:75px;
    text-align:center;
}
.room-info h5{
    margin:0 0 8px;
}
.room-info i{
    color:var(--primary-color);
    font-size:23px;
}
.room-info div:hover i{
    transform:translateY(-5px);
}
.room-info span{
    color:#555;
    font-family:"Outfit",sans-serif;
    font-size:14px;
    font-weight:500;
}
.room-content .book-btn{
    margin-top:25px;
}

/* GALLERY SECTION */
.gallery-section {
    background: #faf8f4;
    padding: 100px 0;
}
.gallery-section .room-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.gallery-section .room-subtitle::before,
.gallery-section .room-subtitle::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 1px;
    background: var(--primary-color);
    vertical-align: middle;
    margin: 0 12px;
}
.gallery-section .room-title {
    color: var(--dark-color);
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 600;
}
.gallery-section .row.g-4 {
    margin-top: 20px;
}
.gallery-section .col-lg-4 {
    overflow: hidden;
}
.gallery-section a {
    display: block;
    position: relative;
    overflow: hidden;
    height: 350px;
    background: var(--dark-color);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-section a::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(202,152,74,.8);
    transform: scale(.85);
    opacity: 0;
    z-index: 2;
}
.gallery-section a:hover .gallery-img {
    transform: scale(1.12);
}
.gallery-section a:hover::before {
    opacity: 1;
}
.gallery-section a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* CONTACT.HTML */
.contact-section {
    background: #faf8f4;
    padding: 100px 0;
}
.contact-box {
    background: var(--white);
    padding: 50px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(36,40,48,.08);
}
.contact-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.contact-box p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 35px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}
.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--dark-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white);
}
.contact-item h5 {
    margin-bottom: 6px;
    color: var(--dark-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-item a,
.contact-item span {
    color: var(--text-color);
    text-decoration: none;
}
.contact-item a:hover {
    color: var(--primary-color);
}
.contact-map {
    height: 100%;
    min-height: 550px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(36,40,48,.12);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;
    border: 0;
    filter: grayscale(20%);
}


/* MEDIA QUERIES */
@media (max-width: 991px) {
    .d-lg-flex {
        justify-content: center;
        width: 100%;
    }
    .book-btn {
        display: inline-flex;
        width: auto;
        max-width: fit-content;
        padding: 14px 38px;
    }
}
@media (max-width: 576px) {
    .d-lg-flex {
        justify-content: center;
        width: 100%;
    }
    .book-btn {
        display: inline-flex;
        width: auto;
        padding: 12px 32px;
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }
    .navbar-brand img {
        width: 130px;
    }
    .navbar-toggler {
        border: 1px solid rgba(202,152,74,.5);
        padding: 7px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        width: 26px;
        height: 26px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(202,152,74,1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-collapse {
        background: #242830;
        margin-top: 20px;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow:
        0 20px 50px rgba(0,0,0,.25);
    }
    .navbar-nav {
        width:100%;
        gap:0 !important;
        align-items:center;
    }
    .navbar-nav .nav-item {
        width:100%;
        text-align:center;
    }
    .navbar-nav .nav-link {
        padding:12px 0;
        font-size:15px;
        color:#fff;
    }
    .navbar-nav .nav-link:hover {
        color:#CA984A;
    }
    .dropdown-menu {
        position:static;
        width:100%;
        margin:8px 0 0;
        background:rgba(255,255,255,.05);
        border-radius:12px;
        box-shadow:none;
    }
    .dropdown-item {
        justify-content:center;
        color:#fff;
        padding:10px;
    }
    .dropdown-item:hover {
        background:rgba(202,152,74,.15);
    }
    .navbar-collapse .d-lg-flex {
        display:flex !important;
        justify-content:center;
        align-items:center;
        width:100%;
        margin-top:25px;
    }
    .navbar-collapse .book-btn {
        display:inline-flex;
        width:auto;
        max-width:max-content;
        margin:auto;
        padding:13px 35px;
    }
}
@media (max-width:576px) {
    .navbar {
        padding:12px 0;
    }
    .navbar-brand img {
        width:115px;
    }
    .navbar-collapse {
        padding:20px 15px;
        margin-top:15px;
    }
    .navbar-nav .nav-link {
        font-size:14px;
    }
    .dropdown-item {
        font-size:13px;
    }
    .navbar-collapse .book-btn {
        padding:12px 28px;
        font-size:13px;
    }
}
@media(max-width:360px) {
    .navbar-brand img {
        width:100px;
    }
    .navbar-collapse {
        padding:15px 10px;
    }
    .navbar-nav .nav-link {
        font-size:13px;
    }
    .navbar-collapse .book-btn {
        padding:10px 24px;
    }
}
@media (max-width: 991px){
    .home-carousel .carousel-item{
        height:70vh;
        min-height:550px;
    }
    .home-carousel .carousel-caption h6{
        font-size:52px;
    }
    .home-carousel .carousel-caption p{
        font-size:13px;
    }
}
@media (max-width:576px){
    .home-carousel .carousel-item{
        height:55vh;
        min-height:480px;
    }
    .home-carousel .carousel-caption h6{
        font-size:34px;
    }
    .home-carousel .carousel-caption p{
        font-size:11px;
        letter-spacing:3px;
    }
    .home-carousel .book-btn{
        padding:12px 30px;
    }
}
@media (max-width:375px){
    .home-carousel .carousel-item{
        height:45vh;
        min-height:430px;
    }
    .home-carousel .carousel-caption h6{
        font-size:28px;
    }
    .home-carousel .carousel-caption p{
        font-size:10px;
    }
}
@media(max-width:991px){
    .about-images{
        min-height:520px;
    }
    .about-img-main{
        height:480px;
    }
    .about-img-small{
        height:220px;
    }
    .section-heading h2{
        font-size:2.6rem;
    }
    .about-section p{
        font-size:16px;
    }
}
@media(max-width:576px){
    .about-section{
        text-align:center;
    }
    .about-images{
        min-height:420px;
    }
    .about-img-main{
        width:90%;
        height:380px;
    }
    .about-img-small{
        width:48%;
        height:170px;
        bottom:20px;
    }
    .section-heading span{
        font-size:12px;
        letter-spacing:3px;
    }
    .section-heading h2{
        font-size:2rem;
        line-height:1.3;
    }
    .about-section p{
        font-size:15px;
        line-height:1.8;
    }
}
@media(max-width:375px){
    .about-images{
        min-height:380px;
    }
    .about-img-main{
        height:340px;
    }
    .about-img-small{
        height:145px;
    }
    .section-heading h2{
        font-size:1.8rem;
    }
}
@media(max-width:991px){
    .facilities-section .section-heading h2{
        font-size:2.6rem;
    }
    .facilities-section .section-heading p{
        font-size:16px;
    }
    .facility-card{
        padding:40px 30px;
    }
    .facility-icon{
        width:75px;
        height:75px;
        font-size:1.8rem;
        margin-bottom:25px;
    }
    .facility-card h4{
        font-size:1.35rem;
    }
}
@media(max-width:576px){
    .facilities-section .section-heading h2{
        font-size:2rem;
        line-height:1.3;
    }
    .facilities-section .section-heading span{
        font-size:12px;
        letter-spacing:3px;
    }
    .facilities-section .section-heading p{
        font-size:15px;
        line-height:1.8;
    }
    .facility-card{
        padding:35px 25px;
        border-radius:18px;
    }
    .facility-icon{
        width:70px;
        height:70px;
        font-size:1.6rem;
        margin-bottom:22px;
    }
    .facility-card h4{
        font-size:1.25rem;
    }
    .facility-card p{
        font-size:15px;
        line-height:1.7;
    }
}
@media(max-width:991px){
    .rooms-section{
        padding:60px 0;
    }
    .rooms-section .section-heading h2{
        font-size:34px;
    }
    .rooms-section .section-heading p{
        font-size:16px;
    }
    .room-image{
        height:230px;
    }
    .room-content{
        padding:30px 25px;
    }
    .room-content h4{
        font-size:22px;
    }
}
@media(max-width:576px){
    .rooms-section{
        padding:50px 0;
    }
    .rooms-section .section-heading span{
        font-size:12px;
        letter-spacing:3px;
    }
    .rooms-section .section-heading h2{
        font-size:28px;
        line-height:1.3;
    }
    .rooms-section .section-heading p{
        font-size:15px;
        line-height:1.8;
    }
    .room-image{
        height:210px;
    }
    .room-content{
        padding:25px 22px;
    }
    .room-content h4{
        font-size:21px;
    }
    .room-content p{
        font-size:14px;
    }
    .room-info{
        gap:8px;
        margin-bottom:25px;
    }
    .room-info span{
        font-size:13px;
    }
    .room-content .book-btn{
        padding:11px 24px;
        font-size:13px;
    }
}
@media(max-width:375px){
    .rooms-section .section-heading h2{
        font-size:25px;
    }
    .room-image{
        height:190px;
    }
    .room-content{
        padding:22px 18px;
    }
}
@media(max-width:991px){
    .testimonial-section{
        padding:70px 0;
    }
    .testimonial-card{
        min-height:280px;
        padding:45px 30px 30px;
    }
    .testimonial-card p{
        font-size:15px;
        line-height:1.8;
    }
    .testimonial-author h5{
        font-size:20px;
    }
}
@media(max-width:768px){
    .testimonial-section{
        padding:60px 0;
    }
    .testimonial-card{
        padding:40px 25px 30px;
    }
    .testimonial-stamp{
        width:60px;
        height:60px;
        font-size:30px;
        margin-bottom:20px;
    }
    .testimonial-card p{
        font-size:15px;
        margin-bottom:25px;
    }
}
@media(max-width:576px){
    .testimonial-section{
        padding:50px 0;
    }
    .testimonial-card{
        min-height:260px;
        padding:35px 20px 25px;
    }
    .testimonial-stamp{
        width:55px;
        height:55px;
        font-size:26px;
    }
    .testimonial-card p{
        font-size:14px;
        line-height:1.7;
    }
    .testimonial-author h5{
        font-size:18px;
    }
    .testimonial-author span{
        font-size:13px;
    }
    .testimonial-carousel .item{
        padding:10px;
    }
}
@media(max-width:991px){
    .home-gallery{
        padding:70px 0;
    }
    .home-gallery .section-heading h2{
        font-size:36px;
    }
    .home-gallery .gallery-card{
        height:300px;
    }
}
@media(max-width:576px){
    .home-gallery{
        padding:55px 0;
    }
    .home-gallery .section-heading h2{
        font-size:30px;
    }
    .home-gallery .section-heading p{
        font-size:14px;
    }
    .home-gallery .gallery-card{
        height:260px;
        border-radius:14px;
    }
    .home-gallery .gallery-carousel .item{
        border-radius:14px;
    }
    .home-gallery .gallery-carousel .item::after{
        inset:8px;
    }
}
@media(max-width:768px){
    .gallery-card {
        height:280px;
    }
}
@media(max-width:991px){
    .cover{
        height:45vh;
    }
    .cover-title{
        font-size:3rem;
    }
}
@media(max-width:576px){
    .cover{
        height:35vh;
        min-height:260px;
    }
    .cover-title{
        font-size:2.2rem;
    }
    .cover-title::after{
        width:50px;
        margin-top:18px;
    }
}
@media(max-width:991px){
    .footer{
        padding:65px 0 10px;
    }
    .footer-brand{
        padding:40px 30px;
    }
    .footer-title{
        margin-top:25px;
    }
    .footer iframe{
        height:230px;
    }
}
@media(max-width:768px){
    .footer .row{
        text-align:center;
    }
    .footer-list li{
        justify-content:center;
    }
    .footer-brand{
        margin-bottom:20px;
    }
    .footer-bottom{
        flex-direction:column;
        justify-content:center;
        text-align:center;
    }
}
@media(max-width:576px){
    .footer{
        padding:50px 0 15px;
    }
    .footer-logo{
        width:95px;
    }
    .footer-description{
        font-size:14px;
    }
    .footer-title{
        font-size:18px;
    }
    .footer-list li{
        font-size:14px;
    }
    .footer iframe{
        height:220px;
    }
    .footer-socials a{
        width:40px;
        height:40px;
    }
}
@media (max-width: 768px) {
    .top-cover {
        height: 300px;
    }
    .top-cover-title {
        font-size: 2.2rem;
    }
    .breadcrumb-item {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .top-cover {
        height: 250px;
    }
    .top-cover-title {
        font-size: 1.8rem;
    }
}
@media(max-width:991px){
    .room-title{
        font-size:38px;
    }
    .room-img{
        height:380px;
    }
    .room-content{
        padding:40px;
    }
    .room-content h3{
        font-size:28px;
    }
}
@media(max-width:767px){
    .room-section{
        padding:70px 0;
    }
    .room-title{
        font-size:30px;
    }
    .room-subtitle{
        font-size:12px;
        letter-spacing:3px;
    }
    .room-subtitle::before,
    .room-subtitle::after{
        width:25px;
        margin:0 8px;
    }
    .room-img{
        height:300px;
    }
    .room-content{
        padding:30px 25px;
    }
    .room-content h3{
        font-size:25px;
    }
    .room-content p{
        font-size:15px;
        line-height:1.8;
    }
    .room-info{
        gap:18px;
        justify-content:center;
    }
    .room-info div{
        min-width:65px;
    }
}
@media(max-width:480px){
    .room-title{
        font-size:26px;
    }
    .room-img{
        height:260px;
    }
    .room-content{
        padding:25px 20px;
    }
    .room-info{
        gap:15px;
    }
}
@media(max-width:991px){
    .gallery-section {
        padding:80px 0;
    }
    .gallery-section .room-title {
        font-size:38px;
    }
    .gallery-section a {
        height:300px;
    }
}
@media(max-width:576px){
    .gallery-section .room-title {
        font-size:30px;
    }
    .gallery-section a {
        height:260px;
    }
    .gallery-section a::after {
        inset:15px;
    }
}
@media(max-width:991px){
    .contact-box {
        padding:35px;
    }
    .contact-map,
    .contact-map iframe {
        min-height:400px;
    }
}
@media(max-width:576px){
    .contact-box h3 {
        font-size:26px;
    }
    .contact-box {
        padding:25px;
    }
}
