.intro {
    text-align: center;
    max-width: 700px;
    margin: 100px auto 60px auto;
    color: #fff;
}

.intro h1 {
    font-family: 'The Seasons', serif;
    color: #ec9736;
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease-out forwards;
}

.intro h1 span {
    display: inline-block;
    color: #fff;
    animation: glow 2s ease-in-out infinite alternate;
}

.intro p {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    animation: fadeUp 1.4s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #ec9736, 0 0 10px #ec9736;
    }

    to {
        text-shadow: 0 0 15px #ffb85c, 0 0 25px #ffb85c;
    }
}

.menu {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.menu-item.reverse {
    flex-direction: row-reverse;
}

.menu-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item:hover img {
    transform: scale(1.1) rotate(3deg);
}

.menu-content {
    flex: 1;
}

.menu-item.reverse .menu-content {
    text-align: right;
}

.menu-item h2 {
    font-family: 'The Seasons', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #ec9736;
}

.menu-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #e0e0e0;
}

.menu-item:nth-child(1) {
    animation-delay: 0.5s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.6s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.7s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.8s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.9s;
}

.menu-item:nth-child(6) {
    animation-delay: 1.0s;
}

@media (max-width: 992px) {
    .menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .intro h1 {
        font-size: 48px;
    }

    .intro p {
        font-size: 18px;
    }

    .menu {
        grid-template-columns: 1fr;
    }

    .menu-item,
    .menu-item.reverse {
        flex-direction: column;
        text-align: center !important;
    }

    .menu-item img {
        width: 100%;
        height: 180px;
    }

    .menu-item.reverse .menu-content,
    .menu-item .menu-content {
        text-align: center;
    }
}