/* --- menu.css --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 1. CONFIGURAÇÃO GERAL DA PÁGINA */
.menu-page {
    background-color: #0e0e0e; 
    min-height: 100vh;
    color: white;
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    /* Espaço no topo para o Header não tapar o título */
    padding: 160px 20px 80px; 
}

/* 2. HEADER (Igual à Home Page) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%; /* Padding inicial grande */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease; /* Transição suave */
    background: transparent; /* Começa transparente */
}

/* Estado "Scrolled" (Ativado via JS) */
.main-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95); /* Fundo escuro */
    padding: 15px 8%; /* Fica mais compacto */
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px); /* Efeito de vidro fosco */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Ajuste dos Links para Mobile/Desktop */
.logo a { color: #CC5500; font-weight: bold; font-size: 1.5rem; text-decoration: none; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: white; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #CC5500; }

/* 3. CABEÇALHO DO MENU */
.menu-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #CC5500;
    padding-bottom: 30px;
}

/* Estados iniciais para Animação (Para não piscar) */
.menu-title, .menu-subtitle, .menu-section {
    opacity: 0; 
    transform: translateY(20px);
}

.menu-title {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    color: #CC5500;
    letter-spacing: -2px;
    margin-bottom: 10px;
    line-height: 1;
}

.menu-subtitle {
    font-family: 'Dancing Script', cursive; 
    font-size: 1.5rem;
    color: #888;
}

/* 4. SEÇÕES E ITENS */
.menu-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::after { content: ''; flex: 1; height: 1px; background: #333; }

.badge {
    font-size: 0.7rem; background: #CC5500; color: white;
    padding: 3px 8px; border-radius: 4px; vertical-align: middle;
    letter-spacing: 1px; font-family: sans-serif;
}

.menu-item { margin-bottom: 25px; }

.item-header {
    display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 5px;
}

.item-name {
    font-size: 1.2rem; color: #e0e0e0; font-weight: bold; font-family: 'Georgia', serif;
}

.dots {
    flex: 1; border-bottom: 1px dotted #444; margin: 0 10px; position: relative; top: -5px;
}

.item-price { font-size: 1.1rem; color: #CC5500; font-weight: bold; white-space: nowrap; }

.item-desc { font-size: 0.9rem; color: #777; font-style: italic; max-width: 90%; }

/* Destaques */
.highlight-item .item-name { color: #CC5500; }
.highlight-item .item-desc { color: #aaa; }

/* 5. GRID E FOOTER */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.menu-item-small { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 10px; }
.menu-item-small h4 { color: #ccc; font-weight: normal; font-size: 1rem; }
.menu-item-small span { color: #CC5500; font-weight: bold; }

.menu-footer {
    text-align: center; margin-top: 80px; font-size: 0.8rem; color: #444; border-top: 1px solid #222; padding-top: 20px;
}

/* 6. RESPONSIVIDADE */
@media (max-width: 900px) {
    .menu-container { padding-top: 120px; }
    .menu-title { font-size: 3rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .item-header { flex-direction: column; align-items: flex-start; gap: 5px; }
    .dots { display: none; }
    .item-price { align-self: flex-end; }
    
    /* Hambúrguer Menu (caso precise sobrescrever o global) */
    .nav-links {
        background-color: #0e0e0e; /* Fundo escuro no mobile */
    }
}