/* ---- RAÍZ Y VARIABLES ---- */
:root {
    --color-fondo: #e0e0d7; /* 
    --color-texto: #36454F; /* Gris carbón, casi negro */
    --color-acento: #bb4c0c; /* Rojo óxido / quemado */
    --color-descripcion: #3d505f;

    --fuente-titular: 'Uncial Antiqua', cursive;
    --fuente-titulo-principal: 'Cinzel', serif;
    --fuente-cuerpo: 'Merriweather', serif;
}

/* ---- RESET BÁSICO Y ESTILOS GENERALES ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fuente-cuerpo);
   /* background-color: var(--color-fondo);*/
   background-image: url(/images/bgImg/fondocafebarBG.jpg);
    background-repeat: repeat;
    background-size: 800px 800px; 
    color: var(--color-texto);
    line-height: 1.6;
}

/* ---- CABECERA / HERO ---- */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.925); 
    
    /*background-image: url(/images/bar.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}

.main-title {
    font-family: var(--fuente-titulo-principal);
    font-size: 4rem;
    /*color: var(--color-texto);*/
    color:var(--color-fondo);
    font-weight: 700;
    letter-spacing: 3px;
}

.subtitle {
    font-family: var(--fuente-cuerpo);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-acento);
}

/* ---- CONTENEDOR PRINCIPAL DEL MENÚ ---- */
.menu-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 50px;
}

/* ---- TÍTULOS DE SECCIÓN ---- */
section h2 {
    font-family: var(--fuente-titular);
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-acento);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(169, 60, 41, 0.3); 
}

/* ---- ESTILOS DE CADA ELEMENTO DEL MENÚ ---- */
.menu-item {
    margin-bottom: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-acento);
    white-space: nowrap;
    margin-left: 20px;
}

.description {
    font-size: 1rem;
    color: var(--color-descripcion);
    font-style: italic;
}

#header-item{
    color: var(--color-acento);
    font-size: 1.3em;
    text-align: center;
}

/*seccion carta fondo*/
#cafes-y-bebidas {
    background-color: rgba(255, 255, 255, 0.915);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 30px;
    margin-top: 60px;
}

#cafes-y-bebidas h2 {
    font-family: var(--fuente-titular);
    font-size: 2rem;
    color: var(--color-acento);
    margin: 20px 0 20px 0;
    border-bottom: 1px solid rgba(169, 60, 41, 0.3);
    padding-bottom: 5px;
}
#cafes-y-bebidas h2:first-of-type {
    margin-top: 0;
}

/* ---- PIE DE PÁGINA ---- */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    /*background-color: rgba(0, 0, 0, 0.05);*/
    background-color: rgba(0, 0, 0, 0.911);
}

footer p {
    font-family: var(--fuente-cuerpo);
    font-style: italic;
    color: var(--color-fondo);
}

footer a {
  color: var(--color-acento);
  text-decoration: none;
  font-weight:bold;
}

footer a:hover {
  text-decoration: underline;  
}


/* --- ESTILOS PARA LA NAVEGACIÓN DE IDIOMAS --- */
.language-nav {
    text-align: center;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.03);
}

.language-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-nav li {
    display: inline-block;
    margin: 0 15px;
}

.language-nav a {
    text-decoration: none;
    color: var(--color-fondo);
    font-family: var(--fuente-cuerpo);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.language-nav a:hover {
    color: var(--color-acento);
}

/* Estilo para el idioma que está activo */
.language-nav a.active {
    color: var(--color-fondo);
    border-bottom: 2px solid var(--color-acento);
    padding-bottom: 2px;
}

/* ---- DISEÑO RESPONSIVE PARA MÓVILES ---- */
@media (max-width: 600px) {
    .main-title {
        font-size: 3rem;
    }
    
    section h2 {
        font-size: 2rem;
    }

    .menu-item-header h3, .price {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.9rem;
    }
}