* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.section {
    position: relative;
    padding: 60px 20px;
}
.menu-section {
    background-image: url('/images/hero_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.restaurantcontainer {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

.menu-header h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.menu-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 28px;
    font-size: 0.95em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    overflow: hidden;
    max-width: 100%;


}

.menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.15s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.25s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.3s;
}

.menu-item:nth-child(6) {
    animation-delay: 0.35s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.menu-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image {
    transform: scale(1.08);
}

.menu-item-details {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-size: 1.1em;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.menu-item-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
    line-height: 1.4;
}

.menu-item-price {
    font-size: 1.4em;
    color: #ffc107;
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-header h2 {
        font-size: 2em;
    }

    .menu-item {
        padding: 15px;
    }

    .menu-item-image {
        width: 60px;
        height: 60px;
    }

    .menu-item-name {
        font-size: 1em;
    }

    .menu-item-price {
        font-size: 1.2em;
    }
}