* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfaf5;
    color: #2c2c2c;
    padding: 40px 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #065535;
    margin-bottom: 5px;
}

.menu-header p {
    font-style: italic;
    color: #ce1126;
    letter-spacing: 2px;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #065535;
    margin: 20px auto;
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 5px;
    border-top: 8px solid #ce1126;
}

.menu-section {
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #065535;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.menu-item {
    margin-bottom: 25px;
}

.item-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 700;
    font-size: 1.1rem;
}

.item-name {
    flex-shrink: 0;
    color: #333;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ddd;
    margin: 0 10px;
}

.item-price {
    color: #ce1126;
}

.item-desc {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

.menu-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    text-decoration: none;
    color: #065535;
    font-weight: bold;
    border: 2px solid #065535;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-back:hover {
    background: #065535;
    color: white;
}

@media (max-width: 600px) {
    .menu-container { padding: 25px; }
    .menu-header h1 { font-size: 2.5rem; }
    .item-info { flex-direction: column; }
    .item-dots { display: none; }
}