/* Estilos para la Landing Page de Bodegón Artesanos */

:root {
    --primary-color: #8B4513; /* Marrón silla de montar, consistente con la carta */
    --background-color: #fdfaf3; /* Un blanco cálido, como papel manteca */
    --text-color: #3d3d3d;
    --light-tan-bg: #f5f5dc; /* Beige, consistente con la carta */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

/* --- Barra de Navegación --- */
.navbar-landing {
    background-color: var(--background-color) !important;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* --- Botón Principal --- */
.btn-primary-bodegon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-bodegon:hover {
    background-color: #6a3610;
    border-color: #6a3610;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Sección Hero --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    background-color: var(--primary-color); /* Fallback color */
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Secciones Generales --- */
section h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.4;
}

.bg-light-tan {
    background-color: var(--light-tan-bg);
    border-radius: 15px;
}

/* --- Sección Imagen del Local --- */
.placeholder-imagen-frente {
    height: 500px; /* Altura fija para el contenedor de la imagen. Puedes ajustarla. */
    overflow: hidden; /* Oculta el desborde de la imagen */
    position: relative;
    /* Las clases .rounded y .shadow de Bootstrap se aplican directamente en el HTML */
}

.local-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre el contenedor sin deformar la imagen */
    object-position: center; /* Centra la imagen dentro del contenedor */
}

/* --- Footer --- */
.footer-bodegon {
    background-color: #333;
    color: #f0f0f0;
}

/* --- Icono de Redes Sociales --- */
.social-icon {
    font-size: 1.8rem; /* Tamaño del ícono */
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #6a3610; /* Un marrón más oscuro al pasar el mouse */
    transform: scale(1.1);
}