/* 
   THE CURRY CULTURE - DEFINITIVE SITE CUSTOM OVERRIDES 
   Addressing Logo Size, Hamburger Menu, and Layout Alignment
*/

/* 1. Logo Targeting by ID - MAXIMUM PRIORITY */
#kf-header-logo {
    height: 80px !important;
    /* Reference site height for clarity */
    width: auto !important;
    max-height: 80px !important;
    max-width: none !important;
    display: block !important;
    transition: all 0.3s ease-in-out;
}

.kf-logo {
    width: auto !important;
    min-width: 150px;
    display: flex !important;
    align-items: center !important;
}

/* 2. Header & Navbar Foundation */
.kf-header {
    background: #9f0527 !important;
    z-index: 99999 !important;
}

.kf-header.fixed .kf-navbar {
    background: #9f0527 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    z-index: 99999 !important;
}

/* Removed pseudo‑element that blocked clicks – no gap bridge needed */

/* Ensure parent li is positioned */
.kf-main-menu ul li {
    position: relative;
}

/* Hide sub‑menu by default and position it */
.kf-main-menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    /* match surrounding menu */
    border: 1px solid #b99272;
    min-width: 180px;
    z-index: 9999;
    padding: 0;
    margin: 0;
}

.kf-main-menu ul li a {
    position: relative;
    z-index: 2;
}

/* Show sub‑menu on hover or focus */
.kf-main-menu ul li:hover>ul,
.kf-main-menu ul li:focus-within>ul {
    display: block;
}

/* Invisible bridge to prevent dropdown from hiding on hover gap */
.kf-main-menu ul li ul::before {
    content: "";
    position: absolute;
    top: -20px;
    /* Adjust based on the gap */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}


.kf-navbar .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. Hamburger Menu Targeting by ID - RESTORE 3 LINES */
#kf-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 36px;
    height: 26px;
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    padding: 4px 0 !important;
    z-index: 11000;
}

#kf-hamburger-btn span {
    display: block !important;
    height: 3px !important;
    width: 100% !important;
    background: #ffffff !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
    margin: 0 !important;
    /* space-between handles the 26px height */
}

/* 4. Desktop Specific Viewport */
@media screen and (min-width: 1200px) {
    #kf-header-logo {
        height: 80px !important;
    }
}

/* 5. Mobile & Tablet Specifics (Viewport Triggered) */
@media screen and (max-width: 991px) {
    .kf-topline {
        display: none !important;
    }

    .kf-navbar {
        padding: 5px 0 !important;
        background: #0e1317 !important;
    }

    .kf-navbar .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .kf-navbar .row {
        min-height: 90px !important;
    }

    #kf-header-logo {
        height: 50px !important;
        /* Large and clear on mobile */
    }

    .kf-logo {
        min-width: 120px;
    }

    #kf-hamburger-btn {
        display: flex !important;
    }

    /* Prioritize logo alignment on small screens */
    .h-btn {
        display: none !important;
    }
}


.gallery-slide-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #111;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-img-wrap:hover .gallery-overlay {
    opacity: 1;
}

.kf-testimonials-section {
    background-color: #fffaf5 !important;
    padding: 100px 0 !important;
}

.kf-testimonials-slider {
    background-color: transparent !important;
    padding: 0 0 50px 0 !important;
    min-height: auto !important;
}

.kf-testimonials-slider .swiper-slide {
    opacity: 1 !important;
    /* Force visibility for all slides in current viewport */
}

/* Redesigned Light Testimonial Card */
.tcc-review-card {
    background: #ffffff !important;
    border: 1px solid rgba(212, 163, 115, 0.18) !important;
    box-shadow: 0 10px 30px rgba(185, 146, 114, 0.05) !important;
    border-radius: 20px !important;
    padding: 35px 30px !important;
    color: #444444 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: all 0.3s ease !important;
}

.tcc-review-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(253, 135, 1, 0.3) !important;
    box-shadow: 0 15px 35px rgba(185, 146, 114, 0.12) !important;
}

.tcc-review-card p,
.tcc-review-text {
    color: #444444 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    margin-bottom: 20px !important;
}

.tcc-review-stars {
    color: #fd8701 !important;
    /* Standout gold stars */
    margin-bottom: 15px !important;
    font-size: 14px !important;
}

.tcc-review-author {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: auto !important;
}

.tcc-author-avatar img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(212, 163, 115, 0.3) !important;
}

.tcc-author-info strong {
    color: #1a1a1a !important;
    font-size: 15px !important;
    display: block !important;
}

.tcc-author-info span {
    color: #777777 !important;
    font-size: 13px !important;
    display: block !important;
}

/* Bullet Pagination Color fixes on Light Background */
.kf-testimonials-slider .swiper-pagination-bullet {
    background: #1a1a1a !important;
    opacity: 0.25 !important;
}

.kf-testimonials-slider .swiper-pagination-bullet-active {
    background: #b99272 !important;
    opacity: 1 !important;
}

/* Counter & Stats Visibility & Light Theme Redesign */
.kf-numbers-section {
    background-color: #ffffff !important;
    padding: 90px 0 !important;
}

.tcc-stat-card {
    padding: 45px 25px !important;
    background: #ffffff !important;
    border: 1px solid rgba(212, 163, 115, 0.18) !important;
    box-shadow: 0 10px 30px rgba(185, 146, 114, 0.05) !important;
    border-radius: 20px !important;
    margin-bottom: 30px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.tcc-stat-card:hover {
    transform: translateY(-8px) !important;
    background: #fffaf5 !important;
    border-color: rgba(253, 135, 1, 0.3) !important;
    box-shadow: 0 15px 35px rgba(185, 146, 114, 0.12) !important;
}

.tcc-stat-icon {
    font-size: 3rem !important;
    color: #b99272 !important;
    /* Premium gold accent */
    margin-bottom: 20px !important;
    transition: transform 0.4s ease !important;
}

.tcc-stat-card:hover .tcc-stat-icon {
    transform: scale(1.15) rotate(5deg) !important;
    color: #fd8701 !important;
    /* Glow to orange on hover */
}

.tcc-stat-num {
    font-size: 3rem !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    color: #fd8701 !important;
    /* Standout brand orange */
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
}

.tcc-stat-name {
    font-family: 'Merienda', cursive !important;
    color: #1a1a1a !important;
    /* Dark text for contrast */
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.tcc-stat-sub {
    color: #555555 !important;
    /* Dark grey for legibility */
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* 7. Floating Sticky Buttons */
.whatsapp_button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10002;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.whatsapp_button img {
    width: 65px;
    height: auto;
    display: block;
}

.whatsapp_button:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
}

.kf-backtop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #fd8701;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10001;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.kf-backtop.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.kf-backtop:hover {
    background: #e67a01;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .whatsapp_button img {
        width: 55px;
    }

    .kf-backtop {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 20px;
    }

    .whatsapp_button {
        bottom: 25px;
        right: 20px;
    }
}

/* 8. Slider & Carousel Overrides (Swiper 11 Compatibility) */
/* Force absolute visibility and interactivity for navigation arrows */
.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev:before,
.swiper-button-next:before,
.swiper-button-prev:after,
.swiper-button-next:after {
    display: flex !important;
    z-index: 100 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: none !important;
    border-radius: 0 !important;
}

/* Ensure arrows are visible by default without hover */
.kf-main-slider .swiper-button-prev,
.kf-main-slider .swiper-button-next {
    margin-top: 0;
    top: 50%;
    width: 47px !important;
    height: 111px !important;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4)) !important;
}

.kf-main-slider .swiper-button-prev {
    left: 0 !important;
    transform: translateY(-50%) !important;
}

/* Symmetric orientation for right arrow */
.kf-main-slider .swiper-button-next {
    right: 0 !important;
    transform: translateY(-50%) scale(-1) !important;
}

/* Banner Height Adjustments */
.kf-started-item {
    height: 70vh !important;
    min-height: 600px !important;
}

/* Mobile Specific Fixes */
@media screen and (max-width: 767px) {
    .kf-started-item {
        height: 60vh !important;
        min-height: 400px !important;
    }

    /* Keep arrows visible but slightly smaller on mobile to prevent overlap */
    .section.kf-started-slider .swiper-button-prev,
    .section.kf-started-slider .swiper-button-next {
        display: flex !important;
        width: 32px !important;
        height: 75px !important;
        visibility: visible !important;
        opacity: 0.8 !important;
    }

    .kf-started-item .name {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }

    .kf-started-item .description {
        padding: 0 40px !important;
    }
}

/* =============================================
   LEFT-SIDE MOBILE DRAWER
   ============================================= */
.kf-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kf-drawer-overlay.active {
    display: block;
    opacity: 1;
}

.kf-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #090c0f !important;
    z-index: 9999;
    overflow-y: auto;
    padding: 30px 25px;
    transition: left 0.35s cubic-bezier(0.3, 0, 0.3, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.4);

    /* Hide scrollbar for Chrome, Safari and Opera */
    -webkit-overflow-scrolling: touch;
}

.kf-drawer::-webkit-scrollbar {
    display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
.kf-drawer {
    -ms-overflow-style: none !important;
    /* IE and Edge */
    scrollbar-width: none !important;
    /* Firefox */
}

.kf-drawer.active {
    left: 0;
}

.kf-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin-bottom: 30px;
    display: block;
}

.kf-drawer .kf-logo {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kf-drawer .kf-logo img {
    max-width: 140px;
    height: auto;
}

.kf-drawer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kf-drawer nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kf-drawer nav ul li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 17px;
    font-family: "Oswald", sans-serif;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.kf-drawer nav ul li a:hover {
    color: #b99272;
}

.kf-drawer nav ul li ul {
    display: none;
    padding-left: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kf-drawer nav ul li.opened>a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.3s;
}

.kf-drawer nav ul li.opened>a:after {
    transform: rotate(180deg);
}

.kf-drawer .drawer-book-btn {
    margin-top: 30px;
    display: block;
    text-align: center;
    padding: 14px;
    background: #b99272;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}

.kf-drawer .drawer-book-btn:hover {
    background: #a07d5d;
    color: #fff;
}

.kf-drawer .drawer-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.kf-drawer .drawer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: color 0.2s;
}

.kf-drawer .drawer-social a:hover {
    color: #b99272;
}

/* =============================================
   9. INTERACTIVE LIKES & SOCIAL SHARING
   ============================================= */
.tcc-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 2px 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #888;
    transition: all 0.25s ease;
    user-select: none;
}

.tcc-like-btn:hover {
    color: #dc3545;
}

.tcc-like-btn.liked {
    color: #dc3545 !important;
}

.tcc-like-btn i {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tcc-like-btn:hover i {
    transform: scale(1.15);
}

.tcc-like-btn.liked i {
    animation: heart-pulse 0.4s ease-out;
}

@keyframes heart-pulse {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4);
    }

    60% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.heart-pop {
    animation: heart-pulse 0.4s ease-out;
}

.share-copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.95);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #b99272;
    z-index: 10000;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Sharing Panel styling */
.tcc-share-panel {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tcc-share-panel-title {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b99272;
    margin-right: 10px;
}

.tcc-share-btn {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    flex: 0 0 38px !important;
    padding: 0 !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.tcc-share-btn.share-fb {
    background-color: #3b5998;
}

.tcc-share-btn.share-wa {
    background-color: #25d366;
}

.tcc-share-btn.share-tw {
    background-color: #1da1f2;
}

.tcc-share-btn.share-copy {
    background-color: #6c757d;
}

.tcc-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
}

/* =============================================
   10. HOMEPAGE & GLOBAL SECTIONS OVERRIDES
   ============================================= */

/* Override Kaffen theme scroll animation hidden states globally */
.element-anim-1,
.scroll-animate,
.kf-titles,
.kf-title,
.kf-subtitle,
.kf-text,
.kf-about-quote,
.kf-choose-list li,
.kf-about-image,
.kf-choose-image,
.kf-services-item,
.kf-menu-item,
.kf-numbers-item,
.tcc-stat-card,
.tcc-heritage-content,
.gallery-slide-item,
.description,
.kf-started-item .description,
.kf-h-title {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Global Premium Typography Overrides */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
select,
.kf-title,
.kf-subtitle,
.subtitles,
.premium-blockquote .kf-title,
.premium-blockquote .sub-text,
.premium-card h4,
.premium-card p,
.kf-text p,
.tcc-partner-text {
    font-family: "Outfit", sans-serif !important;
}

/* Enforce Legible Dark Text Color on White Background Sections */
p,
.kf-text p,
.kf-text,
.kf-title,
.kf-titles h2,
.kf-titles h3,
.kf-titles h4,
.sub-text,
.premium-blockquote .kf-title,
.premium-blockquote .sub-text,
.premium-card h4,
.premium-card p,
.story-text-col,
.kf-menu-item .desc .name,
.kf-menu-item .desc .subname,
.kf-menu-item .desc .price,
.gallery-caption h5,
.tcc-road-card .tl-title,
.tcc-road-card .tl-desc,
.tcc-stat-name,
.tcc-stat-sub,
.kf-cta .kf-title,
.kf-seo-content .kf-text {
    color: #181616 !important;
}

/* Maintain specific brand contrast for accent elements */
.kf-subtitle {
    color: #d4a373 !important;
    /* Elegant gold for subtitles */
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

.tcc-stat-num {
    color: #fd8701 !important;
    /* Standout orange/amber for numbers to stand out */
}

/* Reservation Page Refactor */
.res-page-bg {
    padding: 80px 0;
    background: #f9f9f9;
}

.res-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.res-inner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.res-flex-center {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.res-offer-box {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.res-flex-align {
    display: flex;
    align-items: center;
}

.res-flex-align-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.res-margin-auto {
    margin-left: auto;
}

.res-text-green {
    color: #2e7d32;
}

.res-text-green-small {
    margin: 0;
    font-size: 12px;
    color: #4caf50;
}

.res-badge-green {
    background: #2e7d32;
}

.res-seating-section {
    margin: 30px 0 10px;
}

.res-seating-title {
    font-family: 'Merienda', cursive;
    color: #333;
    margin-bottom: 15px;
}

.res-btn-full-mt {
    width: 100%;
    margin-top: 20px;
}

.res-btn-full {
    width: 100%;
}

.res-mb-30 {
    margin-bottom: 30px;
}

.res-mt-20 {
    margin-top: 20px;
}

.res-mt-10 {
    margin-top: 10px;
}

.res-textarea {
    resize: none;
}

.res-icon-margin {
    margin-right: 8px;
}

.res-alert-box {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
}

.res-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10005;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.res-modal-overlay.show {
    display: flex !important;
}

.res-modal-content {
    background-color: #fff;
    background-image: radial-gradient(rgba(255, 100, 100, 0.1) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(139, 0, 0, 0.12);
}

.res-modal-icon {
    font-size: 4rem;
    color: #2e7d32;
    margin-bottom: 20px;
    animation: scaleUp 0.5s ease-out;
}

.res-modal-title {
    font-family: 'Merienda', cursive;
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.res-modal-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.res-conf-card {
    background: #fbf8f5;
    border: 1px solid #efe3d9;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
}

.res-check-icon {
    color: #c8a876;
}

.res-promo-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.res-promo-item {
    margin-bottom: 12px;
    padding: 12px;
    background: #fff9f0;
    border-radius: 10px;
    border: 1px solid #ffe8cc;
    position: relative;
}

.res-promo-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.res-promo-details {
    font-size: 11px;
    color: #777;
    margin: 4px 0;
}

.res-promo-badge {
    background: #c8a876;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
}

.res-promo-icon {
    color: #c8a876;
    font-size: 18px;
    opacity: 0.3;
}

.res-map-frame {
    border: 0;
}

.res-warning-box {
    display: none;
    margin-top: 10px;
    background: #fff4f4;
    border: 1px solid #ffcccc;
    padding: 10px;
    border-radius: 8px;
    color: #cc0000;
    font-size: 13px;
    text-align: center;
}

.res-offer-active {
    display: none;
    margin-top: 15px;
    background: #e8f5e9;
    border: 1px dashed #2e7d32;
    padding: 10px;
    border-radius: 8px;
}

@keyframes scaleUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Premium Navbar Dropdown */
.premium-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(60, 10, 10, 0.98);
    /* Deep elegant red-black */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 168, 118, 0.2);
    /* Subtle gold border */
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    list-style: none;
}

li:hover>.premium-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.premium-dropdown li {
    display: block;
    margin: 0;
    padding: 0;
}

.premium-dropdown li a {
    color: #fff !important;
    padding: 12px 25px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.premium-dropdown li a:hover {
    background: rgba(200, 168, 118, 0.1);
    color: #c8a876 !important;
    border-left: 3px solid #c8a876;
    padding-left: 30px;
}

/* --- Mobile CTA Fix --- */
@media (max-width: 767px) {
    .kf-cta {
        padding: 60px 15px;
        text-align: center;
    }

    .kf-cta .kf-titles {
        text-align: center;
        margin-bottom: 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kf-cta .kf-subtitle {
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
    }

    .kf-cta .kf-title {
        text-align: center;
        font-size: 28px !important;
        line-height: 1.3;
        width: 100%;
    }

    .kf-cta .col-xs-12.align-right {
        text-align: center !important;
        display: flex;
        justify-content: center;
    }

    .kf-cta .kf-btn {
        margin: 0 auto;
    }
}

/* --- Promo Slider Fix --- */
.promo-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
}

/* --- Mobile Menu Description Fix --- */
@media (max-width: 767px) {

    .kf-menu-item .desc,
    .kf-menu-item-2 .desc {
        max-width: 100% !important;
        padding-right: 0 !important;
    }

    .kf-menu-item .price,
    .kf-menu-item-2 .price {
        position: relative !important;
        padding-left: 0 !important;
        margin-top: 10px;
        display: block;
    }

    .kf-menu-item .price:before,
    .kf-menu-item-2 .price:before {
        display: none !important;
    }
}

/* --- Global Mobile Typography & Alignment Fixes --- */
@media (max-width: 767px) {

    /* Override the template's harsh forced left-align rule for centered elements */
    .kf-titles.align-center,
    .kf-titles.align-center .kf-title,
    .kf-titles.align-center .kf-subtitle {
        text-align: center !important;
    }

    /* Scale down massive titles gracefully to prevent jagged word breaks */
    .kf-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
}

/* --- Global Font Override (Outfit) --- */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
.kf-title,
.kf-subtitle,
.kf-text,
.name,
.subname,
.desc,
a,
.kf-btn span,
.title,
.subtitle,
.tcc-stat-name,
.tcc-stat-sub,
.tl-desc,
.tl-title {
    font-family: 'Outfit', sans-serif !important;
}
/* Restore native calendar icon for date inputs (hidden by original theme) */
::-webkit-calendar-picker-indicator {
    opacity: 1 !important;
    cursor: pointer;
}
