
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff7f3;
    color: #333;
    scroll-behavior: smooth;
}


.dish-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 60px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.dish-container.visible {
    opacity: 1;
    transform: translateY(0);
}


.dish-image {
    position: relative;
    width: 40%;
}

.dish-image img {
    width: 100%;
    border-radius: 40%;
    margin-bottom: 0;
}


.labels {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.labels .label {
    font-family: 'Merriweather', serif; 
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.labels .label:nth-child(1) {
    animation-delay: 1s;
}

.labels .label:nth-child(2) {
    animation-delay: 1.5s;
}

.labels .label:nth-child(3) {
    animation-delay: 2s;
}


.description-container {
    text-align: center;
    margin-top: 10px;
    width: 60%;
}


.dish-title {
    font-family: 'Kumar One', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
}


.bib-title {
    color: #ffbfc5;
}

.chicken-title {
    color: #fff7f3;
}


.dish-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}


.chicken-section {
    background-color: #ffbfc5;
    padding: 90px;
    height: 100vh;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
