:root {
    --gold-primary: #d2a002;
    --gold-soft: rgba(210, 160, 2, 0.2);
    --light-bg: #fdfdfd;
    --accent-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #201615;
}

.visual-menu-area {
    background-color: var(--light-bg);
    background-image: radial-gradient(rgba(210, 160, 2, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.visual-menu-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('<?= base_url("public/assets/images/about/about-page-shape-1.webp") ?>');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

.menu-header-section {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.menu-header-section .top-title {
    display: block;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.menu-header-section h2 {
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.menu-header-section .title-divider {
    width: 60px;
    height: 4px;
    background: var(--gold-primary);
    margin: 0 auto;
    border-radius: 10px;
}

.menu-header-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 25px auto 0;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    z-index: 2;
    position: relative;
}

.menu-item-wrapper {
    padding: 20px;
    width: 33.333%;
}

@media (max-width: 991px) {
    .menu-item-wrapper {
        width: 50%;
    }

    .menu-header-section h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 575px) {
    .menu-item-wrapper {
        width: 100%;
    }
}

.menu-image-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.menu-image-card:hover {
    transform: translateY(-20px);
    border-color: var(--gold-primary);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.menu-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s ease;
}

.menu-image-card:hover img {
    transform: scale(1.08);
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.menu-image-card:hover .menu-card-overlay {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    opacity: 1;
}

.zoom-btn {
    background: var(--gold-primary);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(210, 160, 2, 0.3);
}

.menu-image-card:hover .zoom-btn {
    transform: scale(1);
}

.menu-page-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
}

/* Empty State */
.empty-state {
    padding: 120px 0;
    text-align: center;
}

.empty-state h3 {
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.empty-state p {
    color: #777;
}

/* Fancybox Overrides */
.fancybox__container {
    --fancybox-bg: rgba(255, 255, 255, 0.98);
    --fancybox-color: #222;
}