/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #FF7F00;
    --text-color: #040404;
    --light-gray: white;
    --dark-gray: #080808;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section {
    padding: 5rem 10%;
}

/* Fade overlay styles */
.fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 9999;
    pointer-events: none;
}

.fade-overlay.active {
    opacity: 0.7;
    visibility: visible;
}

/* Ensure the footer has some spacing */
#footer {
    scroll-margin-top: 80px; /* Adjust based on your header height */
}

p {
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e67300;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Food page navbar override */
.food-page .navbar {
    background-color: #FF7F00;
}

.navbar.scrolled {
    padding: 1rem 10%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 1.8rem;
    width: auto;
}

/* Watermark Logo */
.watermark-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: auto;
    opacity: 0.3;
    z-index: 1000;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.watermark-logo:hover {
    opacity: 0.5;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 127, 0, 0.1);
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

/* Accommodation Preview Section */
#accommodation-preview {
    background-color: #f9f9f9;
    padding: 5rem 10%;
}

#accommodation-preview h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

#accommodation-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}

.accommodation-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.preview-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h3.room-name {
    font-size: 0.75rem; /* Reduced by half from 1.5rem */
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.room-specs {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.room-specs p {
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-specs .price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.amenities {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.amenities i {
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* Removed room description paragraph */

/* Accommodation Section Styles */
#accommodation {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.view-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.view-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.view-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.view-btn.active {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.accommodation-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: visible;
    min-height: 600px;
    padding: 2rem 0;
}

.slide {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    min-height: 500px;
}

.accommodation-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.accommodation-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: 100%;
    max-height: 500px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-image:hover img {
    transform: scale(1.05);
}

/* Specific positioning for certain chalets - removed since all chalets now have orange line */

/* Custom font sizes for chalet names to fit in one line */
.accommodation-details h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    line-height: 1.2;
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accommodation-details h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Specific font sizes for each chalet */
.slide[data-chalet="garwe"] .accommodation-details h3 {
    font-size: 1.6rem;
}

.slide[data-chalet="mvuu"] .accommodation-details h3 {
    font-size: 1.5rem;
}

.slide[data-chalet="hungwe"] .accommodation-details h3 {
    font-size: 1.4rem;
}

.slide[data-chalet="nyathi"] .accommodation-details h3 {
    font-size: 1.3rem;
}

.slide[data-chalet="mhofu"] .accommodation-details h3 {
    font-size: 1.5rem;
}

/* Tent names */
.slide[data-type="tents"] .accommodation-details h3 {
    font-size: 1.6rem;
}

.accommodation-details h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.accommodation-info {
    margin-bottom: 2rem;
}

.accommodation-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #555;
}

.accommodation-info i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.accommodation-amenities h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.accommodation-amenities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.accommodation-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.accommodation-amenities i {
    color: #28a745;
    font-size: 0.9rem;
}

.book-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.book-btn:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 127, 0, 0.4);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #e67300;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 127, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .accommodation-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .accommodation-amenities ul {
        grid-template-columns: 1fr;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 768px) {
    #accommodation {
        padding: 3rem 5%;
    }
    
    .view-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .view-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .accommodation-details h3 {
        font-size: 2rem;
    }
    
    .accommodation-info p {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
}

#accommodation h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

#accommodation h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}

.accommodation-section {
    margin-bottom: 4rem;
}

.accommodation-section h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
    padding-left: 1rem;
}

.accommodation-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Accommodation Slider */
:root {
    --base-font-size: clamp(14px, 1.5vw, 16px);
    --heading-scale: 1.5;
    --text-scale: 1;
}

.accommodation-slider {
    padding: 0;
    height: calc(100vh - 180px);
    max-height: 900px;
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: var(--base-font-size);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 20px 0;
    margin: 0 -10px;
}

.slide {
    min-width: 100%;
    transition: all 0.3s ease;
    display: flex;
    height: auto;
    align-items: stretch;
    opacity: 1;
    position: relative;
}

.slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 20px 0;
    margin: 0 -10px;
    scroll-padding: 0 10px;
}

.slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    transform: scale(0.95);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide:not(.active) {
    cursor: pointer;
}

.slide:not(.active):hover {
    opacity: 0.9;
    transform: scale(0.98);
}

/* Slider Navigation Dots */
.slider-dots {
    text-align: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 10px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.dot::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    border-color: #000;
    transform: scale(1.2);
}

.dot.active::after {
    background-color: #dcb000f4; /* Yellow fill */
}

.dot:hover {
    transform: scale(1.3);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    margin: 0 1rem;
}

.slider-arrow:hover {
    background-color: white;
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.slide-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 550px; /* Match image height */
    gap: 1.5rem;
    align-items: stretch; /* Stretch children to match height */
    padding: 1.5rem 0; /* Remove horizontal padding */
    box-sizing: border-box;
}

.slide-content img {
    width: 60%;
    height: 550px;
    object-fit: cover;
    border: none;
    transition: transform 0.3s ease;
}

.slide-content img:hover {
    transform: scale(1.02);
}

.room-info {
    flex: 1;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    height: 100%; /* Take full height of parent */
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.amenities i {
    color: var(--accent-color);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.room-info {
    width: 33.333%;
    padding: 1rem;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    min-height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-size: calc(var(--base-font-size) * var(--text-scale));
}

/* Room Info Styling */
.room-info h4 {
    font-size: calc(1.2rem * var(--heading-scale));
    margin: 0 0 0.5rem 0;
    color: #ff8c00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.3rem;
    line-height: 1.1;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 0.8rem;
    margin: 0.3rem 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-grow: 1;
    align-items: center;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-grow: 1;
    align-items: center;
}

.room-specs p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
    white-space: nowrap;
}

.room-specs 

.price {
    font-size: 1.1rem;
}

/* FAQs Section */
#faqs {
    padding: 5rem 10%;
}

#faqs h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e67e22;
    color: white;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.faq-question:hover {
    background: #d35400;
}

.faq-question span {
    flex: 1;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: #333;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #faqs {
        padding: 3rem 5%;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
}

.amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 0.6rem;
    margin: 0.3rem 0 0;
    padding: 0;
    list-style: none;
    color: white;
    width: 100%;
    font-size: 0.85em;
}

.amenities li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #ffffff;
    white-space: nowrap;
}

.amenities i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 20px;
    }
    
    .slide-content img,
    .room-info {
        width: 100%;
        height: auto;
    }
    
    .slider-container {
        padding: 1rem 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .prev-arrow {
        left: 0;
    }
    
    .next-arrow {
        right: 0;
    }
    
    .room-info {
        padding: 1rem 0;
    }
    
    .amenities {
        grid-template-columns: 1fr;
    }
    
    .room-specs {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .room-specs p {
        font-size: 1rem;
        color: #fff;
    }
    
    .room-info h4 {
        font-size: 1.5rem;
    }
    
    .price {
        color: var(--accent-color) !important;
    }
}

.preview-content {
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 8px 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.amenities {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.amenities li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.amenities i {
    color: var(--accent-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

.slider-arrow:hover {
    background: var(--accent-color);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;om
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    :root {
        --text-scale: 0.95;
        --heading-scale: 1.3;
    }
    
    .accommodation-slider {
        height: auto;
        min-height: 80vh;
    }
    
    .slide-content {
        flex-direction: column;
        height: auto;
        max-height: none;
        padding: 1rem;
    }
    
    .slide-content img,
    .room-info {
        width: 100%;
        max-height: none;
    }
    
    .slide-content img {
        height: 350px;
    }
    
    .room-info {
        padding: 1.5rem;
        margin-top: 1rem;
        max-height: none;
    }
    
    .slide img {
        height: 40vh;
        min-height: 300px;
        width: 100%;
        object-position: center;
    }
    
    .room-info {
        padding: 1.2rem;
        max-height: none;
    }
    
    .amenities {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --text-scale: 0.9;
        --heading-scale: 1.2;
    }
    
    .room-info {
        padding: 1rem;
    }
    
    .room-specs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .amenities {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .room-info h4 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
}
/* Tab content transitions */
.tab-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 10%;
    box-sizing: border-box;
    min-height: 100vh;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* Ensure sections are properly positioned */
.section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Activities Section */
#activities {
    background-color: var(--light-gray);
}

.activities-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.activities-grid::-webkit-scrollbar {
    height: 8px;
}

.activities-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.activities-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.activities-grid::-webkit-scrollbar-thumb:hover {
    background: #d4a017;
}

.activity {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 0 0 300px;
    min-width: 300px;
}

.activity:hover {
    transform: translateY(-5px);
}

.activity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.activity i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Food Section */
.food-content {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0;
}

/* Orange Navigation Scroll Bar */
.food-nav {
    background-color: var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.food-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    white-space: nowrap;
}

.food-nav li {
    color: white;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.food-nav li:hover,
.food-nav li.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.food-nav li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

#food h2 {
    margin-bottom: 0;
}

.food-text p {
    margin-top: 0;
}

.food-text ul {
    margin: 1.5rem 0;
}

.food-text li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.food-text li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.food-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Navigation active state */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

/* About Section */
#about h2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    margin-top: 3rem;
}

.lodge-view {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 60vh;
    margin-bottom: 3rem;
}

.lodge-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    width: 100%;
    max-width: none;
    text-align: center;
    padding: 0;
}

.about-text p {
    margin: 0.5rem 1rem 0 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Footer with Contact Form */
.footer-contact {
    background-color: #000000; /* Solid black background */
    color: #ffffff; /* White text */
    padding: 2.5rem 0 0;
    margin-top: 2.5rem;
}

.footer-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    top: -3px;
}

.footer-contact-info {
    padding: 0 2rem 1.5rem 0;
    margin: 0;
    position: relative;
    top: 3px;
}

.footer-contact-info h3 {
    color: var(--accent-color);
    font-size: 2.1rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-contact-info p,
.footer-contact-info .location-link,
.footer-contact-info .email-link {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .location-link:hover,
.footer-contact-info .email-link:hover {
    color: var(--accent-color);
}

.footer-contact-info .location-link i {
    margin-right: 1rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-contact-info i {
    margin-right: 1rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.footer-social-links .social-link {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-social-links .social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.footer-social-links .social-link:hover {
    color: var(--accent-color);
}

.footer-social-links .social-link:hover i {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    transform: translateY(10px);
}

.footer-contact-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-contact-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.form-group {
    margin-bottom: 1rem;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.2);
}

.footer-contact-form textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    background-color: #000000; /* Solid black background */
    padding: 0.75rem 2rem;
    text-align: center;
    color: #ffffff; /* White text */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle top border */
    margin-top: 5rem;
}

/* Responsive styles for footer */
@media (max-width: 992px) {
    .footer-contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-contact-form {
        margin-top: 1.5rem;
        border-radius: 10px;
        transform: translateY(5px);
    }
    
    .footer-copyright {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-contact-container {
        padding: 0 1rem;
    }
    
    .footer-contact-info {
        padding: 0 0 2rem;
        margin: 0;
        top: 3px;
    }
    
    .footer-contact-form {
        padding: 0.75rem 0.5rem;
        transform: translateY(5px);
    }
}

/* Old footer styles removed - Replaced with new footer-contact styles */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section {
        padding: 4rem 5%;
    }
    
    .food-content,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        margin-top: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
}

/* Hide hamburger by default */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Minimized desktop view responsiveness */
@media (max-width: 1200px) and (min-width: 769px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-links li a {
        padding: 1rem;
        display: block;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
        background: rgba(255, 127, 0, 0.1);
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-links li a {
        padding: 1rem;
        display: block;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
        background: rgba(255, 127, 0, 0.1);
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .nav-links a.active {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
    }
}
}
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 5%;
    }
    
    .hero {
        padding: 0 5%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .newsletter-form button {
        margin-top: 0.5rem;
        padding: 0.8rem;
    }
}

/* Menu Section Styles */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.menu-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

#menu h2 {
    font-size: 6rem;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.menu-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    -webkit-overflow-scrolling: touch;
}

.menu-row::-webkit-scrollbar {
    height: 8px;
}

.menu-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.menu-row::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.menu-row::-webkit-scrollbar-thumb:hover {
    background-color: #d4a017;
}

.menu-row-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    object-position: center;
}

.menu-card-text {
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.menu-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.6;
}

.menu-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    -webkit-overflow-scrolling: touch;
}

.menu-row::-webkit-scrollbar {
    height: 8px;
}

.menu-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.menu-row::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.menu-row::-webkit-scrollbar-thumb:hover {
    background-color: #d4a017;
}

.menu-card {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 280px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-row-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 10px;
    object-position: center;
}

.menu-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: #333;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 10px 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-card {
        min-width: 100%;
        max-width: 100%;
        aspect-ratio: 1;
    }
    
    .menu-card-text {
        font-size: 0.8rem;
    }
}

/* Food Page Navigation */
.food-page .navbar {
    background-color: var(--accent-color);
    position: relative;
    z-index: 100;
    padding: 1rem 0;
}

.food-page .nav-links {
    background-color: transparent;
}

.food-page .nav-links a {
    color: white;
}

.food-page .nav-links a.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.food-page .logo {
    color: white;
}

.food-page .logo img {
    filter: brightness(0) invert(1);
}

/* Food Slider Buttons - Orange Theme */
.menu-category-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-category-btn {
    background-color: #FF7F00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu-category-btn:hover {
    background-color: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.menu-category-btn.active {
    background-color: #cc6600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .food-page .navbar {
        padding: 0.5rem 0;
    }
    
    .menu-category-buttons {
        gap: 0.5rem;
    }
    
    .menu-category-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
