/* ==========================================================================
   0. ROOT VARIABLES & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,700;1,800&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
    --color-primary: #a47e38;
    --color-primary-light: #b99745;
    --color-gold-hover: rgb(207, 182, 87);
    --color-bg-light: #FAEBD7;
    --color-text-dark: #323232;
    --color-white: #ffffff;
    --color-dark: #1f1e1e;
    
    --transition-smooth: all 0.3s ease-out;
    --transition-bounce: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

/* ==========================================================================
   1. BASE & GLOBAL STYLES
   ========================================================================== */
body {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

a, button {
    color: var(--color-primary);
}

a:hover {
    color: var(--color-gold-hover);
}

/* Layout Containers */
.container, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
    max-width: 97%;
}

.row {
    margin-top: 15px;
}

.col-lg-7 {
    flex: 0 0 auto;
    width: 100%;
}

/* ==========================================================================
   2. NAVIGATION & HEADERS
   ========================================================================== */
.split-header-layout {
    padding: 5px 0;
}

.header-logo-section .logo img { max-height: 180px; }
.header-two .logo img { max-width: 100%; }
.logo { width: 170px; }
.header-menu-left { padding-right: 10px; }
.header-menu-right { padding-left: 10px; }

/* Main Menu Items */
.main-menu { margin-right: 0; }
.main-menu.text-left { text-align: right !important; }
.main-menu.text-right { text-align: left !important; }
.main-menu .mega-menu-panel--full { --mega-menu-panel-width: 96vw; }

.main-menu a[target=_self]:hover,
.main-menu ul li a:active {
    color: var(--color-primary);
}

.header-three .main-menu ul li a {
    font-size: 13px;
}

/* Active & Interacted States */
.header-area.header-three .main-menu ul li.active > a,
.header-area.header-three .main-menu ul li a.active,
.header-area.header-three .main-menu ul li a:hover,
.header-area.header-three .main-menu ul li a:focus {
    color: #a47e38 !important;
    font-weight:700;
}

/* Off-Canvas Navigation */
.offcanvas-menu {
    width: 350px;
    background: #040404;
}

.offcanvas-menu ul li {
    border-bottom: 1px solid rgba(198, 182, 45, 0.19);
}

.offcanvas-menu ul li:hover a {
    color: rgb(178, 164, 39);
}

.menu-close i { font-size: 45px; }
.menu-close:hover i { color: rgb(119, 108, 52); }

/* Top Search Bar Components */
.search-top li a {
    font-size: 50px;
    color: var(--color-primary);
    background: transparent;
    display: inline-block;
    transition: var(--transition-bounce); 
}

.search-top li a:hover {
    transform: scale(0.9);
    color: var(--color-white);
}

/* ==========================================================================
   3. BREADCRUMBS & SECTION TITLES
   ========================================================================== */
.breadcrumb-area {
    min-height: 80vh;
    background-position: center;
}

.breadcrumb-title p {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: 26px;
    font-style: italic;
}

.breadcrumb-title h2 {
    margin-bottom: clamp(15px, 3vw, 25px);
    margin-top: clamp(15px, 12vw, 25px);
}

.breadcrumb-description {
    max-width: 75%;
    font-weight: 300;
}

.section-title p {
    width: 100%;
    font-size: 18px;
}

/* ==========================================================================
   4. FULLSCREEN SLIDER & HERO MEDIA
   ========================================================================== */

.slider-content h2 {
    color: var(--color-primary-light);
    font-weight: 400;
}

.s-slider-content p {
    font-size: 25px;
    color: var(--color-white);
}

/* Slick Slider Controls */
.slider-active .slick-arrow {
    border: 2px solid transparent;
    z-index: 1;
}

.slider-active .slick-arrow::before {
    font-size: 60px;
    z-index: 1;
    display: inline-block; 
    transition: var(--transition-bounce); 
}

.slider-active .slick-arrow:hover {
    color: var(--color-primary);
    background: transparent;
    border-color: transparent;
}

.slider-active .slick-arrow:hover::before {
    color: var(--color-primary);
    transform: scale(0.9);
}

/* ==========================================================================
   5. FEATURED CONTENT MODULES (ABOUT, SERVICES, CARDS)
   ========================================================================== */
.about-content li {
    color: var(--color-primary);
    font-size: 22px;
    font-style: italic;
    text-align: center;
}

.about-content3 li::before { display: none; }
.s-about-img img { border-radius: 10px; }
.services-content { background: var(--color-white); }
.single-services::before { background: var(--color-primary); }
.services-active .slick-dots li.slick-active button { background: var(--color-primary); }

.skills-title h2 { color: var(--color-white); font-size: clamp(40px, 8vw, 60px); }
.skills-content p { color: var(--color-white); font-size: clamp(16px, 1.5vw, 16px); }

/* Interactive Component Cards */
.image-card:hover {
    transition: var(--transition-bounce) !important; 
    background: rgba(255, 235, 59, 0.45) !important;
}

.image-card__title { font-size: 24px !important; }
.image-card__description { font-size: 16px !important; }
.image-card__image { height: 350px !important; }

.image-card__button {
    padding: 20px !important;
    display: inline-block !important;
    transition: var(--transition-bounce) !important; 
}

.image-card__button:hover {
    background: var(--color-primary) !important;
    transform: scale(0.9) !important;
}

/* Booking Forms */
.booking-area .contact-form {
    background: #ffffff00;
}
.akomos{
	background: var(--color-primary-light);
}
.akomo{
background:#ede1ce;
}
.booking-area .contact-form {
    padding: 30px 20px 30px 20px;
    position: relative;
    z-index: 1;
    border-radius: 0;
    box-shadow: none !important;
}

.check-availability-custom {
    background: var(--color-primary-light);
}

.btn.ss-btn.active:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    box-shadow: none;
    transform: scale(0.9);
}

/* ==========================================================================
   6. ROOM GALLERY SLIDER BLOCK
   ========================================================================== */
.room-gallery-hero {
    position: relative;
    width: 100%;
    background: transparent;
    padding: 8px 0;
    margin-bottom: -60px;
}

.room-gallery-hero .room-gallery-main-slider,
.room-gallery-hero .room-gallery-main-slider .gallery-slide {
    padding: 0 3px;
}

.room-gallery-hero .room-gallery-main-slider .gallery-slide img.gallery-image {
    aspect-ratio: 5 / 4;
}

.room-gallery-hero .slick-prev, 
.room-gallery-hero .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 20px;
    border: 2px solid transparent;
    background: rgba(74, 74, 74, 0.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.room-gallery-hero .gallery-counter { display: none; }

.gallery-image {
    overflow: hidden;
    position: relative;
    margin: 22% 0 0 0;
}

/* Miscellaneous utilities */
.animations-01 { top: 200px; height: 280px; width: 280px; }
.text-right { width: 80%; }
.share-story-cta__action .btn-primary { background: #c2a34c; }
.blog-details-wrap .meta-info ul { border-top: 2px solid #6a6a6a; }
.blog-details-wrap .meta-info ul li { border-inline-end: 2px solid #878686; }
.author-blog-avatar { border-radius: 50%; }
.zig-zag-layout__content-inner {width: 100% !important; max-width: calc(var(--content-width, 100%) + 300px) !important; text-align: var(--text-align, left); padding: 30px 0;}
.maisha{height: 80vh !important; min-height:0 !important; }
.zig-zag-layout__title { font-weight: 300 !important; letter-spacing: 0em !important;}
.error-page-faint-text { top: -68px !important; left: 10px !important; }
.pt-80 { padding-top: 160px; }
.pt-60 {padding-top: 155px;}
.customer-page .profile-sidebar { background-color: #ffffff; height: 100%; padding: 20px; }
.customer-page { background-color: #ffffff00; margin: 100px 0 0 0; }
.customer-page .profile-content { background: #f0f8ffc2; }
.customer-page .customer-body {  padding: 20px 20px; }
.customer-page .profile-content {background: #ffffff00;}
.customer-page .profile-sidebar {background: #ffffff00;}
.faq-area.pt-90{padding-top: 160px;}
.inner-blog.pt-80{padding-top:50px;}
.customer-name-canvas:hover {color: rgb(178 164 39) !important;}
.crownformsa{background: #fff;}
.booking-area input, .booking-area select {margin-bottom: 0 !important;}
.zig-zag-layout__button {padding: 20px 60px !important; border-radius: 0px !important; font-weight: 300 !important;}
.col-lg-3 {margin-bottom: 2rem;}

/* ==========================================================================
   7. FOOTER MODULES
   ========================================================================== */
.footer-bg .footer-top {
    background-color: #222222;
    border-top: 10px solid var(--color-primary);
}

.footer-style-modern .footer-link ul li a,
.footer-style-modern .f-contact-label,
.footer-style-modern .f-contact span,
.footer-style-modern__links a {
    font-weight: 300;
}

.footer-style-modern__links a,
.footer-style-modern__switchers .dropdown-toggle, 
.footer-style-modern__switchers .language-switcher a, 
.footer-style-modern__switchers .currencies-switcher a,
.footer-style-modern__copyright,
.footer-style-modern .f-contact span,
.footer-style-modern .footer-link ul li a {
    font-size: 14px;
}

.footer-style-modern__switchers .dropdown-toggle, 
.footer-style-modern__switchers .language-switcher a, 
.footer-style-modern__switchers .currencies-switcher a {
    color: var(--footer-bottom-link-color) !important;
    font-weight: 300;
}

.footer-style-modern__copyright {
    font-weight: 300;
}

.footer-style-modern__copyright {
    color: var(--footer-bottom-text-color);
}

.f-widget-title h2, 
.footer-widget .widgettitle {
    color: var(--color-primary);
}

.f-widget-title img { width: 285px; }

.footer-social a {
    display: inline-block; 
    transition: var(--transition-bounce); 
    background-color: rgba(166, 166, 166, 0.21);
    color: var(--color-white) !important;
}

.footer-social a:hover,
.footer-style .footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
    transform: scale(0.9);
}

.footer-style-modern .f-contact i { font-size: 28px; }
.footer-style-modern .f-widget-title h2, 
.footer-style-modern .footer-widget .widgettitle, 
.footer-style-modern .footer-widget .panel-title h3 { font-size: 22px; }
.footer-style-modern .f-contact-label { font-size: 18px; }

.footer-style-modern .f-contact li {
    gap: 18px;
    margin-bottom: 15px !important;
    padding-bottom: 15px;
}

.footer-style-modern__main {
    padding: clamp(65px, 5vw, 70px) 0;
}

/* ==========================================================================
   8. SHARED RESPONSIVE FRAMEWORK EMELENTS (Desktop & Mobile)
   ========================================================================== */
@media (min-width: 1024px), (max-width: 768px) {
    .hamburger-line {
        display: block;
        width: 60px;
        height: 1px;
        background-color: var(--color-white);
        border-radius: 5px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
    }
  
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 55px;
        border: none;
        padding: 0;
        cursor: pointer;
        position: relative;
        z-index: 10;
        gap: 5px;
        background: transparent !important;
    }
  
    .hamburger-menu[aria-expanded=true] .hamburger-line.line1 {
        transform: rotate(45deg) translateY(11px);
        top: 15px;
    }

    .hamburger-menu[aria-expanded=true] .hamburger-line.line3 {
        transform: rotate(-45deg) translateY(-11px);
        top: 30px;
    }
  
    .hamburger-line.line1 { top: 7px; }
    .hamburger-line.line3 { top: 33px; }

    #menu-mobile-nav {
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
        background: var(--color-dark);
    }

    #menu-mobile-nav ul li a { color: #dad7cf; }
    #menu-mobile-nav ul li a.active { color: var(--color-white); font-weight: 500; }
  
    #menu-mobile-nav .menu .menu-title span {
        font-size: 20px;
        font-weight: 500;
        color: rgb(180, 145, 66);
        padding-bottom: 5px;
        padding-left: 4px;
        padding-inline-start: 4px;
        border-bottom: 1px rgb(211, 184, 87) solid;
    }
  
    #menu-mobile-nav ul li a.has-sub { color: var(--color-white); }
    .navbar-toggler:focus { text-decoration: none; outline: 0; box-shadow: none; }
}

/* Medium Screens / Intermediary Laptops */
@media (min-width: 1200px) and (max-width: 1500px) {
    .animations-01, .animations-02, .animations-03, .animations-04, 
    .animations-05, .animations-06, .animations-07, .animations-08, 
    .animations-09, .animations-10, .animations-11, .animations-12, 
    .animations-13, .animations-14, .animations-15, .team-active .slick-arrow {
        display: block !important;
    }
    
    .icon-card { padding: 20px 5px !important; }
    .s-slider-content p { font-size: 25px; }
    .icons-block-6a3f87af2602b .icon-card__title { font-size: 16px; }
    .about-title h2 { font-size: 50px; }
}

/* Large Desktops Base Customizations */
@media (max-width: 992px) {
    .breadcrumb-title p { font-size: 16px !important;}
}

/* Large Desktops Base Customizations */
@media (min-width: 1024px) {
    .main-menu ul li a { letter-spacing: 1px; }
    .search-top li a { font-size: 35px; }
    .mobile-logo { width: 115px; }
}

/* Smartphone Layouts */
@media (max-width: 768px) {
    .slider-video-iframe { width: 300vw; height: 168.75vw; }
  
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
        padding: 0;
    }
  
    .mobile-header-layout .logo img { max-height: 80px; }

    .menu-area, .menu-area.sticky-menu { padding: 0; }
    .breadcrumb-area { min-height: 65vh; background-position: center; }
  
    .row {
        --bs-gutter-x: 0.9rem;
        margin-top: 15px;
    }
  
    .mobile-logo { width: 150px; }
    .room-gallery-hero .room-gallery-main-slider,
    .room-gallery-hero .room-gallery-main-slider .gallery-slide { padding: 0; }
  
    .f-contact i { background: var(--color-primary); color: var(--color-white) !important; }
    .f-contact .icon { width: 35px; height: 35px; }
    .share-story-cta__inner { margin: 0 20px; }
  .customer-page .profile-content {
    background: #ffffff;
}
.customer-page .profile-sidebar {
    background: #ffffff;
}
}

@media (max-width: 992px) {
    .menu-area {
        padding: 5px 0;
    }
}

@media(min-width: 768px)and (max-width:1199.98px) {
    .mobile-header-layout {
        padding: 0px 20px;
    }

    .mobile-logo{width: 80px}

    .mobile-header-layout .logo img {
        max-height: 55px
    }
}