/* Reset e fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-image: url('../Background.jpg'); /* Fundo igual ao site principal */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-in;
}

/* FadeIn animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Container glass */
.container {
    max-width: 420px;
    margin: 30px auto;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px) saturate(70%);
    -webkit-backdrop-filter: blur(50px) saturate(70%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-in;
}

/* Títulos */
h1 {
    font-size: 2rem;
    margin-bottom: 25px;
}

h3 {
    font-weight: 300;
    margin-top: 10px;
}

/* Dish / Entradas */
.dish {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
    flex-direction: row; /* mantém sempre imagem à esquerda e texto à direita */
}

.img-container {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
    margin-right: 15px;
    flex-shrink: 0;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish h3 {
    margin: 0;
    font-size: 1.2rem;
}

.dish p {
    margin: 5px 0;
    font-size: 14px;
    color: #ddd;
}

.price {
    margin-left: auto;
    font-weight: bold;
    color: #fff;
}

/* Responsividade */
@media (max-width: 480px) {
    .dish {
        flex-direction: row; /* mantém imagem + texto lado a lado */
        align-items: flex-start;
    }

    .img-container {
        margin: 0 10px 0 0;
    }

    .price {
        margin-left: auto;
    }
}
