:root {
    --primary-color: #BBA360;
    --primary-dark: #9a8650;
    --primary-light: #d4c18a;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding-top: 0; /* No padding, hero section starts at top */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Top Contact Bar */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.75rem 0;
    z-index: 1030;
    border-bottom: none;
    font-size: 0.875rem;
    transition: all 0.4s ease;
}

.top-contact-bar.scrolled {
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(187, 163, 96, 0.2);
    padding: 0.5rem 0;
}

.top-contact-bar.scrolled .contact-info-top {
    gap: 1rem;
}

.top-contact-bar.scrolled .contact-link {
    font-size: 0.8rem;
}

.top-contact-bar.scrolled .location-info-top {
    font-size: 0.8rem;
}

.top-contact-bar.scrolled .desktop-location {
    display: inline-flex !important;
}

@media (min-width: 768px) {
    .top-contact-bar.scrolled .col-md-6:last-child {
        display: block !important;
    }
    
    .top-contact-bar.scrolled .desktop-location {
        display: inline-flex !important;
    }
}

.contact-info-top {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    transition: gap 0.4s ease;
}

@media (min-width: 768px) {
    .contact-info-top {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: nowrap;
    }
}

.contact-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
}

.location-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.contact-left {
    flex: 0 0 auto;
}

.contact-right {
    flex: 0 0 auto;
    margin-left: auto;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-link svg {
    transition: transform 0.3s ease;
}

.contact-link:hover svg {
    transform: scale(1.1);
}

.location-info-top {
    color: white;
    display: inline-flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.top-contact-bar.scrolled .contact-link,
.top-contact-bar.scrolled .location-info-top {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.top-contact-bar.scrolled .contact-link:hover {
    color: var(--primary-color);
}

/* Glass Morphism Navigation */
.glass-nav {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid transparent;
    padding: 3rem 0 2rem 0; /* More top padding for logo breathing room */
    transition: all 0.4s ease;
    top: 0; /* Start at very top */
    position: absolute; /* Absolute positioning over hero */
}

.glass-nav.scrolled {
    position: fixed; /* Fixed when scrolled */
    /* top position set dynamically via JavaScript to match top-contact-bar height */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: none;
    border-bottom: 1px solid rgba(187, 163, 96, 0.2);
    padding: 1rem 0;
}

.glass-nav .navbar-brand {
    transition: all 0.4s ease;
}

.glass-nav .navbar-brand:hover {
    transform: scale(1.05);
}

.logo-img {
    transition: all 0.4s ease;
    height: 150px; /* Start echt groot */
    filter: none;
}

.glass-nav.scrolled .logo-img {
    height: 50px; /* Klein bij scrollen */
}

.glass-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-nav.scrolled .nav-link {
    color: var(--text-dark) !important;
    text-shadow: none;
}

.glass-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.glass-nav .nav-link:hover::after,
.glass-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.glass-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.2);
}

.glass-nav.scrolled .nav-link:hover {
    background: rgba(187, 163, 96, 0.1);
}

/* Navbar toggler styling */
.glass-nav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.glass-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.glass-nav.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

.glass-nav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 44, 44, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: rgba(187, 163, 96, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for scroll effect */
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Center on desktop to show more of building */
    transform: scale(1.2); /* Start zoomed in */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.7) 0%,
        rgba(187, 163, 96, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: none;
    box-shadow: none;
    color: white;
}

.btn-outline-light {
    border: 1px solid white;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Lunch Promotion Section */
.lunch-promotion {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.lunch-promotion::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

.lunch-promotion::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.lunch-content {
    position: relative;
    z-index: 1;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.lunch-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lunch-content h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.lunch-content .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.lunch-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: none;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.lunch-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.lunch-image-wrapper:hover .lunch-image {
    transform: scale(1.03);
}

/* Featured Gallery Section */
.featured-gallery {
    background: #f5f5f5;
    padding: 5rem 0;
}

.featured-card {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: background 0.3s ease;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.featured-card:hover .featured-image {
    transform: scale(1.08);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.featured-card:hover .featured-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Menu Section */
.menu-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Menu Tabs */
.menu-tabs {
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.menu-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.menu-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(187, 163, 96, 0.1);
}

.menu-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Menu Cards */
.menu-card {
    height: 100%;
}

.menu-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(187, 163, 96, 0.2);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 2rem;
    column-rule: none;
}

.menu-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    padding-left: 1rem;
    position: relative;
    break-inside: avoid;
    page-break-inside: avoid;
}

.menu-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.menu-list li:hover {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .menu-list {
        column-count: 1;
    }
}

/* Category Selection Cards */

.suggestions-card {
    background: linear-gradient(135deg, rgba(187, 163, 96, 0.1) 0%, rgba(187, 163, 96, 0.05) 100%);
}

.suggestions-card .menu-category {
    color: var(--primary-dark);
    font-size: 2rem;
}

/* Subcategory Tabs */
.subcategory-tabs {
    gap: 0.15rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.subcategory-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.subcategory-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(187, 163, 96, 0.1);
}

.subcategory-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.subcategory-content {
    animation: fadeInUp 0.4s ease-out;
}

/* Sfeerbeelden Section */
.sfeerbeelden-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    padding: 5rem 0;
}

.sfeerbeelden-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
}

.sfeerbeelden-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.sfeerbeelden-image-wrapper:hover .sfeerbeelden-image {
    transform: scale(1.05);
}

/* Cadeautip Section */
.cadeautip-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 5rem 0;
}

.cadeautip-content {
    text-align: center;
}

.cadeautip-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cadeautip-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.cadeautip-content .lead {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 5rem 0;
}

.info-card {
    text-align: center;
}

.info-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.info-card h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 0; /* No padding on mobile */
    }
    
    .top-contact-bar {
        font-size: 0.75rem;
        padding: 0.6rem 0;
        background: transparent; /* Transparent on mobile */
    }
    
    .top-contact-bar.scrolled {
        background: rgba(44, 44, 44, 0.95);
        padding: 0.5rem 0;
    }
    
    /* Hide desktop version on mobile */
    .contact-row.d-none.d-md-flex {
        display: none !important;
    }
    
    /* Show mobile version */
    .contact-row.d-md-none {
        display: flex !important;
    }
    
    .glass-nav {
        top: 0; /* Start at top on mobile */
    }
    
    .glass-nav.scrolled {
        /* top position set dynamically via JavaScript to match top-contact-bar height */
    }
    
    .hero-image {
        object-position: center top; /* Top position on mobile */
    }
    
    .logo-img {
        height: 100px; /* Start groot op mobile */
    }
    
    .glass-nav.scrolled .logo-img {
        height: 40px; /* Klein bij scrollen op mobile */
    }
    
    .glass-nav {
        padding: 2rem 0 1.5rem 0; /* More top padding on mobile too */
    }
    
    .contact-info-top {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .top-contact-bar {
        padding: 0.5rem 0;
    }
    
    .contact-info-top {
        width: 100%;
    }
    
    .contact-row {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .contact-icon-only {
        padding: 0.3rem 0.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: auto;
        flex-shrink: 0;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }
    
    .contact-icon-only svg {
        width: 18px;
        height: 18px;
    }
    
    .location-compact {
        display: inline-flex;
        align-items: center;
        font-size: 0.65rem;
        white-space: nowrap;
        margin-left: auto;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .location-compact svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        margin-right: 0.25rem;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }
    
    .location-compact span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .top-contact-bar.scrolled .contact-icon-only,
    .top-contact-bar.scrolled .location-compact svg {
        filter: none;
    }
    
    .top-contact-bar.scrolled .location-compact span {
        text-shadow: none;
    }
    
    .contact-link svg,
    .location-info-top svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lunch-content h2 {
        font-size: 2rem;
    }
    
    .menu-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .lunch-promotion {
        padding: 3rem 0;
    }
    
    .featured-gallery {
        padding: 3rem 0;
    }
    
    .featured-card {
        min-height: 350px;
    }
    
    .featured-image-wrapper {
        min-height: 350px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}
