/* Configurações Globais e de Fonte */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #3b0e0e; /* Fundo vermelho escuro da página */
    color: #f5f5f5; /* Cor de texto principal (branco suave) */
}

/* Container Principal do Cardápio */
.menu-container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #5d1a1a; /* Fundo vermelho mais claro do conteúdo */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Cabeçalho e Rodapé */
.header, .footer {
    text-align: center;
    padding: 1rem;
}

.header h2 {
    font-weight: 500;
}

.footer p {
    font-size: 0.8rem;
    color: #aaa;
}

/* ---- ESTILOS DO RODAPÉ COM LINKS ---- */
.footer-links {
    display: flex;
    justify-content: center; /* Centraliza os botões horizontalmente */
    align-items: center;
    gap: 30px; /* Espaçamento entre os botões */
    margin-bottom: 1rem;
    padding-top: 1rem; /* Adiciona um espaço acima dos links */
}

.footer-links a img {
    width: 70px; /* Tamanho dos ícones */
    height: auto; /* Mantém a proporção da imagem */
    transition: transform 0.2s ease-in-out;
}

.footer-links a:hover img {
    transform: scale(1.15); /* Efeito de zoom ao passar o mouse */
}

/* Títulos */
h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f0a500; /* Um detalhe dourado para o título */
    padding-left: 10px;
}

/* Seção do Menu */
.menu-section {
    margin-bottom: 3rem;
}

/* Item Individual do Menu (Prato/Bebida) */
.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #7a2b2b; /* Linha separadora sutil */
    padding-bottom: 1.5rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 1.5rem;
    background-color: #5d1a1a; /* Cor de fundo para imagens de placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #333;
}

.menu-item-details {
    flex-grow: 1;
}

.menu-item-details h3 {
    font-size: 1.4rem;
    font-weight: 500;
}

.menu-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f0c040; /* Dourado para o preço */
    margin-top: 0.25rem;
}

.menu-item-ingredients {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ---- RESPONSIVIDADE ---- */

/* Para tablets e celulares maiores */
@media (max-width: 768px) {
    .menu-container {
        margin: 10px;
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Para celulares */
@media (max-width: 480px) {
    .menu-item {
        /* Muda o layout para vertical em telas pequenas */
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .menu-item img {
        width: 100%; /* Imagem ocupa a largura total */
        height: 150px; /* Altura fixa para a imagem */
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .menu-item-details h3,
    .menu-item-price {
        font-size: 1.2rem; /* Ajusta o tamanho da fonte */
    }
}