.menu-section {
    background-color: #ffffff;
    padding: 3rem 1rem;
    position: relative;
}

@media (min-width: 1024px) {
    .menu-section {
        padding: 6rem 1rem;
    }
}

.menu-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
}

.section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 4rem;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.menu-item {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease 0.1s, opacity 0.3s ease 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:nth-of-type(1) {
    animation: fadeInUp 0.6s ease-out;
}

.menu-item:nth-of-type(2) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.menu-item:nth-of-type(3) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.menu-item:nth-of-type(4) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.menu-item:nth-of-type(5) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.menu-item:nth-of-type(6) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.menu-item-image {
    width: 100%;
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease 0.2s;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.menu-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
}

.menu-item-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.menu-item-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.menu-item-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4f46e5;
    margin-top: 0.5rem;
}

.menu-item-link {
    margin-top: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
    align-self: flex-start;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-item-link:hover {
    color: #4338ca;
    border-color: #4338ca;
    transform: translateY(-1px);
}

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


