/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
    padding-top: 140px; /* Increased space for navbar + contact banner */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #8B4513;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    opacity: 1 !important;
}

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

.nav-link {
    text-decoration: none;
    color: #8B4513;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #A0522D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}

.hamburger:hover {
    background-color: rgba(139, 69, 19, 0.1);
}

/* Contact Banner */
.contact-banner {
    background: #8B4513;
    color: white;
    padding: 0.8rem 0;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001; /* Higher than navbar to ensure visibility */
    overflow: visible;
    width: 100%;
}

/* Scroll Progress Indicator */
::before {
    --scroll-progress: 0;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: calc(var(--scroll-progress) * 100%);
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #CD853F);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 1px 3px rgba(139, 69, 19, 0.3);
}

.contact-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: visible;
    padding: 0 1rem;
}

.contact-banner-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.contact-banner-item i {
    color: #FFD700;
}

.contact-banner-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-banner-item a:hover {
    text-decoration: underline;
}

.hours-mobile {
    display: none;
}

/* Hours Status Indicator */
.status-indicator {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.status-indicator.large {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-left: 0;
    margin-top: 0.5rem;
}

.status-indicator.open {
    background: #e8f5e8;
    color: #2d5a3d;
    border: 1px solid #4caf50;
    animation: none;
}

.status-indicator.closed {
    background: #ffe8e8;
    color: #8b2635;
    border: 1px solid #f44336;
    animation: none;
}

.status-indicator.checking {
    background: #fff3e0;
    color: #8B4513;
    border: 1px solid #ff9800;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animations & Skeleton Screens */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin: 0.5rem 0;
}

.skeleton-text.wide {
    width: 80%;
}

.skeleton-text.medium {
    width: 60%;
}

.skeleton-text.narrow {
    width: 40%;
}

.skeleton-card {
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8B4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    flex-direction: column;
}

.loading-text {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Image Lazy Loading with Blur-up Effect */
.lazy-image-container {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(5px);
    transform: scale(1.05);
}

.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.lazy-image.loading {
    opacity: 0.5;
    filter: blur(10px);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
    animation: placeholder-pulse 2s ease-in-out infinite;
}

@keyframes placeholder-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Enhanced Button Feedback */
.btn, .call-btn, .floating-call-btn, .directions-btn {
    position: relative;
    overflow: hidden;
}

.btn::before, .call-btn::before, .directions-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before, .call-btn:active::before, .directions-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Micro-interactions for Icons */
.nav-item:hover .nav-link {
    transform: translateY(-2px);
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #A0522D;
}

.social-btn:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

/* Floating Call Button Enhancements */
.floating-call-btn:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

/* Menu Category Button Interactions */
.menu-category {
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.menu-category:hover::before {
    left: 100%;
}

.menu-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Logo Animation */
.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
    transition: transform 0.3s ease;
}

/* Hamburger Menu Animation Enhancement */
.hamburger:hover .bar {
    background: #A0522D;
    transform: scaleX(1.1);
}

/* Footer Links Hover */
.footer-section a:hover {
    color: #8B4513;
    transform: translateX(5px);
}

/* Card and Section Hover Animations */
.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #fff, #f9f9f9);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff, #fafafa);
}

.feature {
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.15);
}

.feature:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #A0522D;
}

/* Section Animations */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    border-radius: 2px;
}

.section-title:hover::after {
    width: 80px;
}

/* Map Container Hover */
.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Contact Item Enhancements */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 69, 19, 0.02);
    border-radius: 10px;
    padding: 1rem;
}

/* Image Hover Effects */
.hero-img, .about-img {
    transition: all 0.5s ease;
}

.lazy-image-container:hover .hero-img,
.lazy-image-container:hover .about-img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Social Button Enhancements */
.social-btn {
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-btn:hover::before {
    width: 100px;
    height: 100px;
}

/* Menu Category Active State Enhancement */
.menu-category.active {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
    transform: translateY(-2px);
}

/* Form Styling */
.catering-form, .contact-form, .newsletter-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8B4513;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #f44336;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #4caf50;
}

.catering-submit,
.contact-submit {
    background: #8B4513;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.catering-submit:hover,
.contact-submit:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.catering-submit:active,
.contact-submit:active {
    transform: translateY(0);
}

/* Catering Toggle Button (styled like menu categories) */
.catering-toggle {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid #8B4513;
    font-weight: 600;
    background: #f5f2ed;
    color: #8B4513;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    outline: none;
}

/* Add the same shimmer effect as menu categories */
.catering-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.catering-toggle:hover::before {
    left: 100%;
}

.catering-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    background: #8B4513;
    color: white;
}

.catering-toggle.active {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
    transform: translateY(-2px);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: none;
}

.form-message.success {
    background: #e8f5e8;
    color: #2d5a3d;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: #ffe8e8;
    color: #8b2635;
    border: 1px solid #f44336;
}

/* Mobile Form Responsiveness */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .catering-form, .contact-form, .newsletter-form {
        padding: 1.5rem;
    }
}

/* Newsletter Form Styling */
.newsletter-form {
    background: none;
    padding: 0;
    margin: 1rem 0;
    box-shadow: none;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: #8B4513;
    box-shadow: none;
}

.newsletter-submit {
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.75rem 1.2rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    background: #A0522D;
    transform: scale(1.05);
}

.newsletter-submit:active {
    transform: scale(0.95);
}

/* Newsletter Mobile */
@media (max-width: 768px) {
    .newsletter-input-group {
        border-radius: 20px;
    }

    .newsletter-input-group input {
        border-radius: 20px 0 0 20px;
        font-size: 0.8rem;
    }

    .newsletter-submit {
        border-radius: 0 20px 20px 0;
        padding: 0.75rem 1rem;
    }
}

/* Payment Methods & Takeout Styling */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.payment-option:hover {
    border-color: #8B4513;
    background: #f0f0f0;
    transform: translateY(-2px);
}

.payment-option i {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 0.3rem;
}

.payment-option span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
}

.payment-note {
    color: #8B4513;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    border-left: 3px solid #8B4513;
}

.takeout-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.takeout-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.takeout-option:hover {
    border-color: #8B4513;
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.takeout-option i {
    font-size: 1.2rem;
    color: #8B4513;
    margin-top: 0.2rem;
    min-width: 20px;
}

.takeout-option strong {
    display: block;
    color: #8B4513;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.takeout-option p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
    }

    .payment-option {
        padding: 0.3rem;
    }

    .payment-option i {
        font-size: 1.2rem;
    }

    .payment-option span {
        font-size: 0.7rem;
    }

    .takeout-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .takeout-option {
        padding: 0.75rem;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background: #8B4513;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: calc(100vh + 140px); /* Add body padding to maintain full height */
    display: flex;
    align-items: center;
    background: #f5f2ed; /* Light warm cream */
    padding-top: 0;
    margin-top: -140px; /* Offset the body padding to show full image */
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 0 20px; /* Add top padding to account for navbar and contact banner */
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #A0522D;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #8B4513;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: white;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: 500px;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    width: 100%;
    max-width: 500px;
    display: block !important;
    visibility: visible !important;
    transform: none !important; /* Prevent any JavaScript transforms */
    transition: none !important; /* Disable transitions that might interfere */
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu Section */
.menu {
    background: #f8f6f0;
    padding: 5rem 0;
}


.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-category {
    padding: 1rem 2rem;
    border: 2px solid #8B4513;
    background: white;
    color: #8B4513;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 200px;
}

.menu-category::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.menu-category.active::after {
    transform: rotate(180deg);
}

.menu-category:hover,
.menu-category.active {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.menu-items {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.menu-items.active {
    display: block;
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.menu-items.collapsed {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

/* Catering menu should start collapsed */
.catering-menu .menu-items {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.catering-menu .menu-items.active {
    display: block;
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

/* Make catering menu section look like other menu sections */
.catering-menu {
    background: #8B4513;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    width: 100%;
}

.catering-menu .section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.catering-menu .section-subtitle {
    color: white;
    margin-bottom: 1.25rem;
}

/* Reduce gap under the single catering category button */
.catering-menu .menu-categories {
    margin-bottom: 1rem;
}

/* Catering menu button styling */
.catering-menu .menu-category {
    background: #f8f6f0;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.catering-menu .menu-category:hover {
    background: #8B4513;
    color: white;
}

.catering-menu .menu-category.active {
    background: #f8f6f0;
    color: #8B4513;
}

/* Ensure catering menu items are readable on dark background */
.catering-menu .menu-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-bottom: none;
}

.catering-menu .menu-item .item-info h3 {
    color: #8B4513;
}

.catering-menu .menu-item .price {
    color: #8B4513;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}


/* Special styling for grouped BBQ items */
.menu-item.bbq-group {
    background: #f8f6f0;
    border: 2px solid #8B4513;
    border-radius: 15px;
    margin: 1rem 0;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.menu-item.bbq-group:hover {
    background: #f0ede6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
    border: 2px solid #8B4513;
}

.menu-item.bbq-group .item-info h3 {
    color: #8B4513;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.menu-item.bbq-group .item-info p {
    color: #8b4513;
    font-weight: 500;
    line-height: 1.7;
}

.menu-item.bbq-group .item-info p strong {
    color: #8B4513;
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item.bbq-group .item-info p br + br {
    margin-top: 0.5rem;
}

.menu-item.bbq-group .price {
    color: #8B4513;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(139, 69, 19, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #8B4513;
}

/* Override bbq-group styling within catering menu: no price pill, match card look */
.catering-menu .menu-item.bbq-group {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.catering-menu .menu-item.bbq-group:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.catering-menu .menu-item.bbq-group .price {
    background: transparent;
    border: none;
    padding: 0;
}

.item-info h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: #666;
    font-size: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
}

/* About Section */
.about {
    background: #f5f2ed;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: 500px;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 1 !important; /* Ensure about image is always visible */
}

/* Daily Specials Section */
.daily-specials {
    padding: 5rem 0;
    background: #8B4513;
}

/* Daily specials button styling */
.daily-specials .menu-category {
    background: #f8f6f0;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.daily-specials .menu-category:hover {
    background: #8B4513;
    color: white;
}

.daily-specials .menu-category.active {
    background: #f8f6f0;
    color: #8B4513;
}

.daily-specials .section-title {
    color: white;
}

.daily-specials .section-subtitle {
    color: white;
    margin-bottom: 3rem;
}

/* Daily specials menu items should be clean and readable */
.daily-specials .menu-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.daily-specials .menu-item h3 {
    color: #8B4513;
}

.daily-specials .menu-item p {
    color: #666;
}

.daily-specials .menu-item .price {
    color: #8B4513;
}


/* Catering Section */
.catering {
    background: white;
    padding: 4rem 0;
}

/* Removed conflicting catering-menu rule */

.catering-menu-title {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.catering-content {
    max-width: 1000px;
    margin: 0 auto;
}

.catering-description {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.catering-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #faf8f5;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

.catering-info {
    background: #f5f2ed;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.catering-info h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.package-list {
    list-style: none;
    padding: 0;
}

.package-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    color: #666;
    line-height: 1.5;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list strong {
    color: #8B4513;
}

.catering-contact {
    text-align: center;
    background: #8B4513;
    color: white;
    padding: 1.25rem 1rem;
    border-radius: 15px;
}

.catering-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.catering-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
}

/* Tighter spacing between phone and email in catering contact block */
.catering-contact .contact-info {
    gap: 0.25rem 0.75rem;
}
.catering-contact .contact-info p {
    line-height: 1.2;
}

/* Temporarily hide Instagram feed section */
.instagram-feed {
    display: none !important;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Social Media Section */
.social-section {
    background: #f5f2ed;
}

.social-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.yelp {
    background: #ff6b6b;
}

.social-card h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.social-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.facebook-btn {
    background: #3b5998;
    color: white;
}

.facebook-btn:hover {
    background: #4c70ba;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-2px);
}

.yelp-btn {
    background: #ff6b6b;
    color: white;
}

.yelp-btn:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

/* Open Daily Section */
.open-daily {
    background: #8B4513;
    padding: 4rem 0;
    text-align: center;
}

.open-daily-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.hours-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    min-width: 200px;
    max-width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hours-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.hours-card p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hours-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-card {
        width: 100%;
        max-width: 300px;
    }
    
    .open-daily-title {
        font-size: 2.5rem;
    }
}

/* Instagram Feed */
.instagram-feed {
    text-align: center;
    margin: 3rem 0;
}

.instagram-feed h3 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.instagram-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.instagram-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 200px;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.instagram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
}

.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.instagram-card p {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .instagram-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .instagram-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-info {
        gap: 0.75rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
    }
    
    .reviews-cta {
        padding: 1.5rem;
    }
    
    .reviews-cta .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Reviews Section */
.reviews-section {
    background: #f5f2ed;
    padding: 4rem 0;
}

.reviews-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-platform {
    color: #4285f4;
    font-size: 1.5rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    text-align: right;
}

.reviews-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reviews-cta h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reviews-cta p {
    color: #666;
    margin-bottom: 1.5rem;
}

.reviews-cta .btn {
    background: #4285f4;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.reviews-cta .btn:hover {
    background: #3367d6;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B4513;
    width: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 1rem;
}

.call-btn {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.call-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.call-btn i {
    margin-right: 0.5rem;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    background: #A0522D;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4), 0 0 0 10px rgba(139, 69, 19, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    }
}

/* Hide floating button on larger screens if needed */
@media (min-width: 1200px) {
    .floating-call-btn {
        display: none;
    }
}

.map-container {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-info {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.map-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.directions-btn {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

.directions-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.directions-btn.apple-maps {
    background: #007AFF;
    box-shadow: 0 2px 10px rgba(0, 122, 255, 0.3);
}

.directions-btn.apple-maps:hover {
    background: #0056D6;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
}

.directions-btn i {
    margin-right: 0.3rem;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #D2B48C;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D2B48C;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #D2B48C;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-banner-content {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Minimal mobile spacing */
    }
    
    .contact-banner-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus {
        background-color: #f8f8f8;
        color: #8B4513;
        transform: translateX(10px);
    }

    .nav-menu .nav-link:focus {
        outline: 2px solid #8B4513;
        outline-offset: -2px;
    }

    /* Contact Banner Mobile */
    .contact-banner {
        padding: 0.6rem 0;
        font-size: 0.7rem;
    }

    .contact-banner-content {
        gap: 0.5rem;
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 0.5rem;
    }

    .contact-banner-item {
        gap: 0.2rem;
        flex-shrink: 1;
        max-width: 100%;
        overflow: visible;
    }

    .hours-desktop {
        display: none;
    }

    .hours-mobile {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 3rem 0; /* Increased padding for more white space */
        min-height: auto; /* Remove full height constraint on mobile */
        padding-top: 0;
        margin-top: 0; /* Remove negative margin */
    }
    
    .hero .container {
        flex-direction: row;
        text-align: left;
        gap: 0.5rem;
        align-items: center;
        padding: 1.5rem 20px; /* Increased padding for better spacing */
    }
    
    .hero-content {
        flex: 2;
        padding: 2rem 0.25rem 0 0.25rem; /* Added top padding for white space above text */
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .navbar {
        padding: 0.1rem 0;
    }
    
    .logo-img {
        height: 40px;
        max-width: 120px;
    }
    
    .nav-logo {
        min-width: 0;
        flex-shrink: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-image {
        flex: 1;
        max-width: 120px;
    }
    
    .hero-img {
        max-width: 100%;
        height: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .catering-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-category {
        width: 200px;
    }
    
    .logo-img {
        height: 60px;
        max-width: 250px;
    }
    
    .footer-logo {
        height: 80px;
        max-width: 300px;
    }
}

@media (max-width: 1200px) {
    .hero .container {
        padding: 0 2rem;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .hero-image {
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .contact-banner-content {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.3rem 0.5rem;
    }
    
    .contact-banner-item {
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .footer-logo {
        height: 70px;
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 1.1rem;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}