
.restaurant-hero {
    text-align: center;
    padding: 40px 0 20px;
    background: #fff;
}
.restaurant-title {
    font-size: 2.6rem;
    color: #BF9948;
    font-weight: 400;
}
.restaurant-sub {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===== MENU CAROUSEL ===== */
.restaurant-menu {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}
.section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.menu-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* add space for arrows below */
}
.menu-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}
.menu-item {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 visible */
    height: 730px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}
.menu-item:hover {
    transform: translateY(-5px);
}

/* Arrows BELOW the slider */
.menu-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.menu-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #BF9948;
    background: #fff;
    color: #BF9948;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.menu-arrow:hover {
    background: #BF9948;
    color: #fff;
}

/* ===== MOSAIC GALLERY ===== */
.restaurant-gallery {
    background: #fff;
    padding: 80px 0;
}

.mosaic-gallery {
    column-count: 4;
    column-gap: 20px;
}

.mosaic-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.mosaic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mosaic-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform .3s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-item { flex: 0 0 calc((100% - 20px) / 2); height: 600px; }
    .mosaic-gallery { column-count: 3; }
}
@media (max-width: 768px) {
    .mosaic-gallery { column-count: 2; }
}
@media (max-width: 576px) {
    .menu-item { flex: 0 0 100%; height: 620px; }
    .menu-arrows { gap: 14px; margin-top: 15px; }
    .menu-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
    .mosaic-gallery { column-count: 1; }
}
