:root {
    /* ================= BRAND (SAME IDENTITY – REFINED) ================= */
    --brand-primary: #b59701;
    /* Gold (Logo color) */
    --brand-primary-hover: #8f7700;
    /* Deeper Gold */
    --brand-glow: rgba(181, 151, 1, 0.45);

    /* ================= BASE COLORS ================= */
    --color-black: #0b0b0d;
    --color-white: #ffffff;

    --color-text-primary: #1a1a1a;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;

    /* ================= BACKGROUNDS ================= */
    --bg-body: #f7f8fa;
    --bg-section: #ffffff;
    --bg-soft: #f1f3f6;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.65);
    --bg-dark: #0f1115;

    /* ================= GRADIENTS (REACT FEEL) ================= */
    --gradient-brand: linear-gradient(135deg,
            #b59701 0%,
            #e6d28c 100%);

    --gradient-dark: linear-gradient(180deg,
            #0f1115 0%,
            #14161c 100%);

    /* ================= BORDERS ================= */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-soft: rgba(0, 0, 0, 0.1);
    --border-brand: rgba(181, 151, 1, 0.4);

    /* ================= SHADOWS (SOFT + PREMIUM) ================= */
    --shadow-xs: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 10px 40px rgba(181, 151, 1, 0.25);

    /* ================= TYPOGRAPHY ================= */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;

    /* ================= FONT SIZES (FLUID SCALE) ================= */
    --fs-h1: clamp(2.5rem, 5vw, 3.8rem);
    --fs-h2: clamp(2rem, 4vw, 2.8rem);
    --fs-h3: clamp(1.6rem, 3vw, 2.1rem);
    --fs-h4: clamp(1.3rem, 2.5vw, 1.6rem);
    --fs-body: clamp(1rem, 1.6vw, 1.1rem);
    --fs-small: 0.9rem;

    /* ================= LINE HEIGHT ================= */
    --lh-heading: 1.15;
    --lh-body: 1.75;

    /* ================= RADIUS (MODERN UI) ================= */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* ================= TRANSITIONS ================= */
    --transition-fast: 0.25s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* ================= Z-INDEX ================= */
    --z-header: 1000;
    --z-modal: 1100;
    --z-overlay: 1200;
}



body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-text);
    background: var(--color-light);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: var(--lh-heading);
    font-weight: 600;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

/* ////////////////////////////////////////
////////////////////////////////////////
//////////////////////////////////////// */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    padding-top: 80px;
    /* background-color: var(--bg-soft); */
}

header .navbar {
    padding: 10px 0 0 0;
    transition: padding 0.5s ease;
    background-color: white;
    transition: 0.3s all ease;
}


header .navbar .container {
    padding: 10px 20px 10px 20px;
    border-radius: var(--radius-lg);

}

header .navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--color-text-secondary);
}

header .navbar .navbar-nav .nav-item {
    position: relative;
    color: var(--color-text-secondary);
}

header .navbar .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 0px;
    height: 2px;
    background-color: var(--brand-accent);
    transition: 0.3s ease;

}

header .navbar .navbar-nav .nav-item:hover::after {
    width: 100%;
}





.navbar .logo {
    width: 100px;
    height: auto;
}

.navbar .navbar-brand .brand-text {
    color: var(--brand-primary);
    font-weight: 700;
}

.navbar .navbar-nav .nav-link {
    color: var(--color-text);
    font-size: 14px;
}

#booknow-btn {
    background-color: var(--brand-primary);
    color: var(--bg-section);
    /* border-radius: var(--radius-lg); */
    border-radius: 0%;
    padding: 11px 20px 11px 20px;
    transition: 0.3s ease;
}

#booknow-btn:hover {
    background: var(--gradient-brand);
}

.navbar #booknow-btn span {
    text-transform: uppercase;
    font-size: small;
    font-weight: 600;
}

.navbar #booknow-btn ion-icon {
    color: var(--bg-section) !important;
    font-size: 19px;
}

@media (max-width: 768px) {
    .top-section .hero-section img {
        display: none;
    }
}

@media (max-width: 426px) {
    .navbar h4 {
        font-size: 0.95rem;
    }

    .top-section .navbar {
        padding: 0 0 0 0;
    }

}

@media (max-width: 320px) {
    .navbar h4 {
        font-size: 0.80rem;
    }
}

.navbar #menuBtn {
    color: var(--brand-primary);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--brand-primary);
    padding: 40px;
    transition: 0.4s ease;
    z-index: 1045;
    overflow-y: scroll;
}

.sidebar a:hover {
    background-color: var(--brand-primary-hover);
}

.sidebar a {
    display: block;
    color: white;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.4s ease;
}

.sidebar.active {
    right: 0;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    float: right;
    transition: 0.3s ease;
}

.sidebar .close-btn:hover {
    transform: scale(1.2);
}

.mobile-menu {
    position: fixed;
    top: -650px;
    left: 0;
    width: 100%;
    background-color: var(--brand-primary);
    padding: 10px 0px 10px 20px;
    transition: 0.4s ease;
    z-index: 1055;
    overflow-y: scroll;
}

.mobile-menu a {
    display: block;
    color: white !important;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: 0.4s ease;
}

.mobile-menu a:hover {
    background-color: var(--color-primary-hover);
}

.mobile-menu.active {
    top: 70px;
}


.top-section {
    position: relative;
    /* background-image: url("assets/banner/banner.jpg"); */
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
}

.overlay-top {
    position: absolute;
    inset: 0;
    background-image: url("assets/hero/slider-1-3.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(25, 22, 40, 0.9) 10%, rgba(25, 22, 40, 0.53) 100%);
    /* background: rgba(0, 0, 0, 0.25); */
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)); */
    z-index: 2;
}


.hero-section {
    position: relative;
    z-index: 3;
    padding: 120px 0;
}

.top-section h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    line-height: var(--lh-heading);
    color: var(--color-white);
    /* max-width: 720px; */
}

.top-section p {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.85);
    /* max-width: 620px; */
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 90px 20px;
        text-align: center;
    }

    .top-section h1,
    .top-section p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .top-section {
        min-height: 90vh;
    }

    .top-section h1 {
        font-size: 2rem;
    }

    .top-section p {
        font-size: 0.95rem;
    }

    #booknow-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}


/* .hero-section .image-content {
    z-index: 3;
    margin-top: 20px;
}

.hero-section .image-content img {
    width: 90%;
} */











/* search-box */
.search-box {
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.search-box .container .second-row {
    background-color: var(--bg-section);
    box-shadow: var(--shadow-sm);
}

.search-box ion-icon {
    font-size: 20px;
    color: var(--bg-section);
}

.search-box span {
    font-size: 15px;
    color: var(--bg-section);
}

.search-box .search-btn {
    display: flex;
    justify-content: start;
    align-items: start;
    cursor: pointer;
    background-color: var(--brand-primary);
}

.search-box .search-btn:hover {
    background: var(--gradient-brand);
}

.search-box label {
    font-size: 14px;
}

.search-box input,
li,
.dropdown-toggle {
    font-size: 14px;
    border-radius: 0px;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}


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

    .search-box .search-btn {
        justify-content: stretch;
    }

    .search-box .search-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

}










/* SECTION */
.about-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* LEFT IMAGE */
.about-img-box {
    position: relative;
    display: inline-block;
}

.about-img-box::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    background: var(--brand-primary);
    top: -20px;
    left: -20px;
    z-index: 1;
}

.about-main-img {
    position: relative;
    z-index: 2;
}

/* RIGHT CONTENT */
.about-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--brand-primary);
    font-weight: 600;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-heading span {
    color: var(--brand-primary);
    font-family: var(--font-heading);
}

.about-desc {
    color: #555;
    line-height: 1.8;
}

/* FEATURES */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    z-index: 2;
}

.about-section .icon-box {
    width: 48px;
    height: 48px;
    border: 1px solid var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 20px;
}

/* BOTTOM GALLERY */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 220px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 600;
    z-index: 2;
    font-size: 0.9rem;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Responsive gallery height adjustment */
@media (max-width: 575px) {
    .gallery-item {
        height: 180px;
    }
}


/* RESPONSIVE */
@media (max-width: 991px) {
    .about-heading {
        font-size: 2rem;
    }

    .about-gallery {
        justify-content: start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .about-heading {
        font-size: 1.75rem;
    }

    .feature-item {
        gap: 10px;
        font-size: 14px;
    }

    .about-section .icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}








.services {
    position: relative;
    padding: 100px 0;
    /* section height naturally banay */
    overflow: hidden;
}

/* TOP BACKGROUND */
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: #ffffff;
    /* white top */
    z-index: 1;
}

/* BOTTOM BACKGROUND */
.services::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #f7f7f7;
    /* light gray bottom */
    z-index: 1;
}

/* CONTENT ALWAYS ON TOP */
.services-content {
    position: relative;
    z-index: 2;
}


.services h2 span {
    color: var(--brand-primary);
    font-family: var(--font-heading);
}

.services-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border-radius: 0px;
}

.services-card:hover img {
    transform: scale(1.1);
}

.services-card img {
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: 0.5s transform ease;
}

.services-card .icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 170px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-sm);
}

.services-card .icon-box i {
    font-size: 24px;
    color: var(--brand-primary);
}

.services-card .btn {
    background-color: var(--brand-primary);
    border: none;
    border-radius: 0%;
}

.services-card .btn:hover {
    background: var(--gradient-brand);
}





/* gallery section */

/* Heading */
.blog-section .small-title {
    color: var(--color-text-secondary);
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.blog-section .main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-primary);
}

/* Card */
.blog-card {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    transition: 0.5s transform ease;
}

/* Overlay content */
.blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.blog-content h5 {
    margin: 10px 0;
    font-weight: 600;
}

/* Tag */
.blog-content .tag {
    background: var(--brand-primary-hover);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    display: inline-block;
}




/* /////// owned section /////// */

.owned h2 {
    font-family: var(--font-heading);
    color: var(--heading-color);
}

.owned .card-img-overlay h4 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.owned .card:hover .card-img-overlay h4 {
    opacity: 1;
    transform: translateY(0);
}

.owned .card-img-overlay {
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;

}

.owned .card:hover .card-img-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.owned .card:hover img {
    transform: scale(1.1);
}

.owned .card img {
    transition: all 0.3s ease;
}







/* tarrif section */

.tarrif h2 span {
    color: var(--brand-primary);
    font-family: var(--font-heading);
}

.tarrif .btn {
    background-color: var(--brand-primary);
}

.tarrif .btn:hover {
    background: var(--gradient-brand);
}

.tarrif .room-card {
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tarrif .swiper-slide .room-img:hover {
    transform: scale(1.1);
}

.tarrif .room-img {
    transition: 0.5s transform ease;
    position: relative;
}

.tarrif .room-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.tarrif .price {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
}

.tarrif .room-icons {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tarrif .room-icons i {
    background: #fff;
    padding: 6px;
    font-size: 13px;
}

.tarrif .room-body {
    padding: 20px;
}

.tarrif .room-body h5 {
    margin-bottom: 5px;
}

.tarrif .rooms-arrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
}

.tarrif .custom-arrow {
    width: 45px;
    height: 40px;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tarrif .swiper-button-next::after,
.tarrif .swiper-button-prev::after {
    display: none;
}



/* testimonials section */
.testimonials .card {
    border: none;
    background-color: var(--bg-section);
    box-shadow: var(--shadow-sm);
}

.testimonials p {
    color: var(--color-text-secondary);
    font-size: var(--fs-small);
}

/* ////////// contact ////////// */

.contact-section h2 {
    font-family: var(--font-heading);
    color: var(--primary-mid);
}
.py-5{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;

}

.contact-section .map-container {
    width: 100%;
    height: 400px;
}

.contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-section .bt-grad {
    background-color: var(--brand-primary);
    border-radius: 0;
    border: 0;
    color: var(--bg-card);
    transition: 0.3s all ease;
}

.contact-section .bt-grad:hover {
    background: var(--gradient-brand);
    color: var(--bg-card);
}









/* /////// footer section /////// */
footer {
    background: linear-gradient(to top, #f5f5f5, #ffffff);
}


footer .social-icons i:hover {
    transform: translateY(-5px);
    background-color: var(--secondary);
    color: var(--text-accent) !important;
}


footer .social-icons i {
    background-color: var(--brand-primary);
    color: var(--brand-primary) !important;
    padding: 5px 6px;
    border-radius: var(--radius-sm);
    box-shadow: 0px 1px 5px rgb(199, 199, 199);
    cursor: pointer;
    transition: transform 0.3s ease;
}

footer li {
    list-style: none;
}

footer li a {
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s ease-in-out;
    display: inline-block;
}

footer li a:hover {
    transform: translateX(5px);
    color: var(--color-dark);
}

footer .social-icons ion-icon {
    color: var(--brand-primary);
    background-color: var(--bg-card);
    padding: 5px;
    box-shadow: var(--shadow-sm);
}


.footer h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
}



.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    /* border-radius: 50%; */
    padding: 8px 10px 5px 10px;
    z-index: 9999;
    color: var(--bg-soft);
    background-color: var(--brand-primary);
}

.back-to-top ion-icon {
    font-size: 20px;
}

.back-to-top:hover {
    background: var(--gradient-brand);
    color: var(--bg-soft);
}

html {
    scroll-behavior: smooth;
}


.cover-img {
    height: 400px;
    width: 100%;
    /* background: linear-gradient(to top, #be9715, #fce342); */
    
}

