/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2f4125;
    --secondary-color: #d4af37;
    --text-color: #333;
    --light-text: #fff;
    --success-color: #28a745;
    --fail-color: #dc3545;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s, padding 0.4s;
    background-color: rgba(47, 65, 37, 0.95);
    /* Header color same as primary transparent initially */
    padding: 15px 0;
    color: white;
}

#main-header.scrolled {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: 0.3s;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 16px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

#main-header.scrolled .nav-list a {
    color: var(--primary-color);
}

.nav-list a:hover {
    color: var(--secondary-color);
}

/* Mega Menu */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 600px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    border-top: 3px solid var(--secondary-color);
    color: #333;
    padding: 0;
    overflow: hidden;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    display: flex;
    min-height: 250px;
}

.mega-categories {
    width: 200px;
    background: #f8f8f8;
    border-right: 1px solid #eee;
}

.mega-categories>li {
    position: relative;
}

.mega-categories>li>a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #333 !important;
    /* Override header color */
    border-bottom: 1px solid #eee;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-categories>li>a:hover,
.mega-categories>li:hover>a {
    background: white;
    color: var(--primary-color) !important;
}

/* Nested Submenu Logic */
.mega-sub-categories {
    position: absolute;
    top: 0;
    left: 200px;
    /* Width of categories col */
    width: 400px;
    /* Remainder of Mega Menu width */
    height: 100%;
    background: white;
    padding: 20px;
    display: none;
}

.mega-categories>li:hover .mega-sub-categories {
    display: block;
}

.mega-sub-categories h4 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.mega-sub-categories ul li {
    margin-bottom: 10px;
}

.mega-sub-categories ul li a {
    color: #666 !important;
    font-size: 14px;
    font-weight: 400;
}

.mega-sub-categories ul li a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

/* Header Buttons */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-book {
    background-color: var(--secondary-color);
    color: white !important;
}

.btn-book:hover {
    background-color: #bfa030;
}

.btn-call {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    background: transparent;
}

.btn-call:hover {
    background: var(--secondary-color);
    color: white !important;
}

#main-header.scrolled .btn-call {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

#main-header.scrolled .btn-call:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

#main-header.scrolled .mobile-menu-toggle {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
    }

    .nav-list.active {
        display: flex !important;
    }

    .nav-list a {
        color: #333;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Mega Menu on Mobile */
    .has-mega-menu .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        /* Hidden by default on mobile, maybe toggle similarly? */
        border-top: none;
    }

    .has-mega-menu:hover .mega-menu {
        display: block;
    }

    .mega-menu-container {
        flex-direction: column;
    }

    .mega-categories,
    .mega-sub-categories {
        width: 100%;
        position: static;
        border: none;
    }

    .mega-sub-categories {
        display: none !important;
        /* Simplified for mobile, or could use JS to accordion */
        padding-left: 20px;
        background: #f9f9f9;
        height: auto;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Cards & Sections */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* Dynamic Banner Styles */
.page-banner {
    /* Height and styles handled inline for dynamic image, but defaults here */
    background-color: #333;
    margin-bottom: -50px;
    /* Pull content up slightly? No, keep standard */
}

/* Rounded Buttons for Slider */
.btn-primary,
.btn-secondary,
.btn-book {
    border-radius: 50px !important;
    /* Fully rounded */
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

/* Specific Slider Button Styling */
#hero-slider .btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

#hero-slider .btn-primary:hover {
    background-color: white;
    color: var(--secondary-color);
}

/* Category Slider Horizontal Scroll */
.category-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    justify-content: flex-start;
    flex-wrap: nowrap !important;
    /* Force nowrap */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    cursor: grab;
}

.category-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.cat-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    width: 130px;
    /* Default Desktop Width */
}

.cat-item.active,
.cat-item:hover {
    opacity: 1;
}

.cat-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--secondary-color);
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-item h4 {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.2;
}

/* Mobile: Show 5 items */
@media (max-width: 768px) {
    .category-slider {
        gap: 10px;
    }

    .cat-item {
        /* 100% / 5 = 20%. Subtract gap logic implicitly or specific calc */
        width: 18vw;
        /* Slightly less than 20% to account for gaps/padding */
        min-width: 60px;
    }

    .cat-img {
        width: 12vw;
        /* Responsive circle size */
        height: 12vw;
        min-width: 50px;
        min-height: 50px;
        max-width: 80px;
        max-height: 80px;
        border-width: 2px;
        margin-bottom: 8px;
    }

    .cat-item h4 {
        font-size: 11px;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
 