:root {
    --primary: #2c3e50;
    --accent: #d4af37;
    --light-bg: #fdfbf7;
    --white: #ffffff;
    --text: #333333;
    --text-dark: #1a1a1a;
    --border: #e0e0e0;
    --font-main: Arial, sans-serif;
    --font-heading: Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--accent);
}

.currency-switcher select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
}

/* Hero */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.search-box {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #34495e;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-layout {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.content-area {
    flex-grow: 1;
}

/* Filters */
.filter-box {
    margin-bottom: 2rem;
}

.filter-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.amenities-list label {
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Dual Slider */
.dual-slider {
    position: relative;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.dual-slider input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    top: 0;
}

.dual-slider input::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Hotel Grid */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hotel-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.hotel-badge:empty {
    display: none;
}

.hotel-gallery {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100%;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-img {
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.hotel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-card:hover .hotel-img {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.hotel-gallery:hover .gallery-nav {
    opacity: 1;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hotel-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hotel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amenity-tag {
    font-size: 0.75rem;
    background: #f0f0f0;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.price-block {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.card-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
    text-align: center;
    margin-top: auto;
    font-weight: 500;
}

.card-btn:hover {
    background: #34495e;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
        order: -1;
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: #c5a028;
}

/* SEO Content Styling */
.seo-content-container {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    border-top: 2px solid #e0e0e0;
    background: #fafafa;
    border-radius: 4px;
}

.seo-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.seo-subheading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.seo-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.seo-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.seo-faq-section {
    margin-top: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 768px) {
    .seo-content-container {
        padding: 2rem 1rem;
    }

    .seo-heading {
        font-size: 1.5rem;
    }

    .seo-subheading {
        font-size: 1.25rem;
    }
}

/* Compact Filters */
.class-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.class-filter-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    user-select: none;
}

.class-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.class-filter-btn input {
    display: none;
}

/* Multi-select Dropdown */
.multi-select {
    position: relative;
    width: 100%;
}

.select-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
}

.select-box:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #666;
}

.selected-options {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
    font-size: 0.9rem;
    color: #333;
}

.options-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    margin-top: 5px;
}

.options-container.active {
    display: block;
}

.option-item {
    padding: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #eee;
}

.option-item:hover {
    background: #f9f9f9;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item input {
    margin: 0;
}

/* Category Cards */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-card-img {
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.category-card-content {
    padding: 1.5rem;
    text-align: center;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #eee;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Hero Specific Overrides */
.hero h1,
.hero p {
    color: #ffffff !important;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid var(--accent);
}

.cta-btn:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Minimal Category Cards */
.category-card-minimal {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.category-card-minimal .icon-box {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.category-card-minimal h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.category-card-minimal p {
    color: #666;
    font-size: 0.9rem;
}

/* Refined Hover Shadow */
.category-card-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
    }

    header .logo {
        font-size: 1.2rem;
    }

    header nav {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        /* Space for scrollbar if visible */
    }

    header nav ul {
        display: inline-flex;
        gap: 1rem;
        padding: 0;
    }

    header nav ul li a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .currency-switcher {
        display: none;
        /* Hide currency switcher on mobile header to save space, or move it */
    }

    /* Mobile Gallery Slider */
    .mobile-gallery-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 10px;
        margin-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-gallery-slider img {
        flex: 0 0 90%;
        /* Show 90% of image to indicate scrollability */
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        scroll-snap-align: center;
    }

    /* Hide desktop grid on mobile */
    .hotel-gallery-grid {
        display: none !important;
    }
}

/* Ensure mobile slider is hidden on desktop */
.mobile-gallery-slider {
    display: none;
}

/* Hamburger Menu Styles */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        flex-direction: column;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-links ul li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    /* Fix Mobile Slider Visibility */
    .mobile-gallery-slider {
        display: flex !important;
        /* Force display on mobile */
        width: 100%;
        height: 250px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        margin-bottom: 1rem;
    }

    .mobile-gallery-slider img {
        flex: 0 0 90%;
        width: 90%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        scroll-snap-align: center;
    }
}

/* Header Layout Refinements */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Toggle Switch Styles */
.currency-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.currency-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Mobile Visibility */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    header {
        padding: 0.5rem 1rem;
    }

    .hamburger-btn {
        margin-left: auto;
        /* Push to right if needed, but flex handles it */
    }
}

/* Mobile Slider Arrows */
.mobile-slider-container {
    position: relative;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Mobile Header Layout Fixes - STRICT ENFORCEMENT */
@media (max-width: 768px) {
    header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 0.5rem 1rem !important;
        height: auto !important;
        min-height: 60px;
    }

    .logo {
        flex: 0 1 auto !important;
        margin-right: auto !important;
        /* Push everything else to the right */
        font-size: 1.2rem;
        /* Ensure it fits */
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        flex: 0 0 auto !important;
        margin-left: 0 !important;
    }

    /* Ensure hamburger is visible and sized correctly */
    .hamburger-btn {
        display: block !important;
        font-size: 1.5rem;
        padding: 0.5rem;
    }
}

/* Image Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: auto;
    width: 10em;
    display: block;
}