/* =========================
   STYLES.CSS - VINTAGE BAR BASE STYLES (MARRÓN)
   ========================= */

/* --- PALETA DE COLORES (Madera Rústica y Atardecer) --- */
:root {
    --color-fondo-arena: #FAF7F2; /* Arena Suave y cálida (Fondo) */
    --color-marron-chocolate: #4A3B30; /* Marrón Oscuro para texto principal, header y footer */
    --color-coral-atardecer: #FF7F50; /* Coral brillante para el acento (Precios y títulos) */
    --color-beige-oscuro: #C8A389; /* Tono de madera desgastada/Borde Vintage */
    --color-crema-claro: #FFFFFF; /* Blanco puro para contraste */
}

/* --- TIPOGRAFÍA --- */
body {
    /* Fuente Montserrat como base (asumiendo que está enlazada en el HTML) */
    font-family: 'Montserrat', sans-serif;
    color: var(--color-marron-chocolate); /* Color principal del texto: Marrón */
    background-color: var(--color-fondo-arena);
    margin: 0;
    padding-top: 5rem; /* Deja espacio para el header fijo */
}

/* Base Headings */
h1 { 
    font-size: 4rem; 
    font-family: 'Borna', serif; /* Fuente distintiva para el título principal */
    color: var(--color-marron-chocolate); /* Título en Marrón */
}

h2 { 
    font-size: 2.5rem; 
    font-family: 'Borna', serif; 
    color: var(--color-coral-atardecer); /* Títulos de sección en Coral/Naranja */
}

h3 { 
    font-size: 1.75rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    color: var(--color-marron-chocolate); /* Subtítulos en Marrón */
}

h4 { 
    font-size: 1.25rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

/* --- TEXTOS BASE --- */
.paragraph-normal { font-size: 1rem; line-height: 1.6; }
.paragraph-bold { font-size: 1rem; font-weight: 700; }
.included-info { font-style: italic; font-weight: 500; }


/* --- BOTONES --- */
.primary-button {
    background-color: var(--color-coral-atardecer);
    color: var(--color-crema-claro);
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.primary-button:hover {
    background-color: var(--color-beige-oscuro); /* Marrón más claro en hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.language-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.language-main-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-main-button img {
    width: 30px;
    height: 20px;
}

.language-options {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 0;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 5px 0;
}

.language-options.show {
    display: block;
}

.language-option {
    color: black;
    padding: 8px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.language-option img {
    width: 25px;
    height: 17px;
}

.language-option:hover {
    background-color: #ddd;
}

/* Global Link Styles */
a {
    color: var(--color-marron-chocolate); /* Links de texto principal en Marrón */
    text-decoration: none;
}

a:hover {
    color: var(--color-coral-atardecer); /* Cambio a Coral en hover */
}