:root {
    --fondo: #fdfbf7;
    --texto: #4a3b32;
    --borde: #d6c6b9;
    --boton: #a67b5b;
}

body {
    background-color: var(--fondo);
    color: var(--texto);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Títulos */
.section-title, h1 {
    color: var(--boton);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tarjetas */
.menu-card {
    background-color: white;
    border: 1px solid var(--borde);
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s;
}

    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(74, 59, 50, 0.1);
    }

.menu-img {
    height: 180px;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: var(--boton);
    font-size: 1.1em;
}

/* Botones */
.btn-primary {
    background-color: var(--boton);
    border-color: var(--boton);
}

    .btn-primary:hover {
        background-color: var(--texto);
        border-color: var(--texto);
    }

.info-section {
    border: 1px dashed var(--boton);
    padding: 30px;
    border-radius: 10px;
}


/* CORRECCIÓN DEL PIE DE PÁGINA (FOOTER) */
.footer {
    position: relative !important; /* Deja de flotar sobre el contenido */
    bottom: unset !important;
    width: 100%;
    background-color: #fdfbf7; /* Mismo color del fondo para que se integre */
    margin-top: 50px; /* Un espacio para que no se pegue al formulario */
}

body {
    margin-bottom: 0 !important; /* Quitamos el margen extra que traía la plantilla */
}