/* --- Fuentes y Estilos Globales --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* --- Barra de Navegación --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
}
.navbar-brand img { /* Target the image inside the brand link */
    height: 60px; /* Default height */
}
.nav-link {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 15px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Se mantiene para posicionamiento general si no hay margin-top fuerte */
    text-align: center;
    color: white;
    overflow: hidden;
    /* CAMBIO CLAVE: Hacemos el degradado más suave (menos oscuro) */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/imagenInicio.png') no-repeat center center;
    background-size: 100%;
    background-position: center 20%;
    background-attachment: fixed;
}

.hero-content {
    z-index: 5;
    /* *** CAMBIOS CLAVE AQUÍ: Eliminamos el fondo negro y el padding *** */
    padding: 0; /* Eliminado el padding */
    margin-top: calc(30vh); /* Empuja el contenido hacia abajo. Ajusta 30vh a tu gusto */
    background-color: transparent; /* Eliminado el fondo oscuro, ahora es transparente */
    border-radius: 0; /* Eliminado el redondeo */
    max-width: 80%;
    box-sizing: border-box;
    /* --- Fin de CAMBIOS CLAVE --- */
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); /* Sombra más fuerte y un poco más extendida */
    margin-bottom: 0.5rem;
}

.hero-content .lead {
    font-size: clamp(1rem, 4vw, 1.5rem);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8); /* Sombra más fuerte y un poco más extendida */
    margin-top: 0.5rem;
}

/* --- Media Query for Mobile Adjustments --- */
@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 50px;
    }
    .hero-section {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    .hero-content {
        margin-top: calc(20vh);
        max-width: 90%;
    }
}


/* --- Diseño de Cuadrícula (Grid) --- */
.grid-section {
    padding: 100px 0;
}
.grid-item {
    position: relative;
    overflow: hidden;
    color: white;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.grid-item:hover img {
    transform: scale(1.1);
}
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.grid-item h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.grid-item .btn {
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #c9a35e;
    border-color: #c9a35e;
}
.grid-item .btn:hover {
    background-color: #b38f50;
    border-color: #b38f50;
}

/* --- Estilos Generales de Sección --- */
.section {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
}

/* --- Estilos del Menú --- */
.menu-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
}
.menu-tabs .nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #6c757d;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 0;
    margin: 0 1.5rem;
    text-transform: uppercase;
}
.menu-tabs .nav-link.active, .menu-tabs .nav-link:hover {
    color: #333;
    border-bottom-color: #c9a35e; /* Color dorado */
}
.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    width: 100%;
}
.menu-item {
    margin-bottom: 2rem;
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.menu-item-header h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden; /* Prevent long names from overlapping dots */
    text-overflow: ellipsis; /* Add ... if name is too long */
    padding-right: 10px;
}
.menu-item-header .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    white-space: nowrap;
    padding-left: 10px;
}
.menu-item-header .dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 5px;
    position: relative;
    bottom: 4px;
    min-width: 10px; /* Ensure dots are visible even with short space */
}
.menu-item-description {
    font-size: 0.9rem;
    color: #6c757d;
    padding-right: 1rem; /* Space before potential price wrap */
}
.menu-item-variants {
    font-size: 0.9rem;
    font-style: italic;
    color: #6c757d;
}

/* --- Sección Ubicaciones --- */
.location-card {
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
}
.btn-location {
    background-color: #c9a35e;
    border-color: #c9a35e;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 10px 25px;
    transition: background-color 0.3s ease;
}
.btn-location:hover {
    background-color: #b38f50;
    border-color: #b38f50;
    color: white;
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #a9a9a9;
    padding: 60px 0;
}
.footer h5 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer p, .footer ul, .footer li {
    font-size: 0.9rem;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #c9a35e;
}
.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* --- Galería Estática (3 Imágenes) --- */
#galeria img {
    height: 300px; /* Altura fija para las imágenes */
    object-fit: cover; /* Recorta para ajustar sin deformar */
    width: 100%;
    border-radius: 5px; /* Bordes redondeados */
}