/* style.css */
body {
    font-family: 'Merriweather', serif; /* Una fuente serif elegante */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Otra fuente serif para títulos */
    color: #b80f0a; /* Un tono rojo oscuro y elegante */
}

.hero {
    /* Reemplaza con la URL de una imagen de comida italiana elegante */
    background-image: url('img/platillo.png');
    background-size: cover;
    background-position: center;
    position: relative;
    /* Elimina z-index: 1; de aquí */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay oscuro para legibilidad del texto */
    z-index: 1; /* ¡Este es el cambio clave! El overlay debe estar por encima del fondo pero por debajo del contenido. */
}

/* Añade una clase o asegura que tu contenedor de texto y botón esté por encima del overlay */
.hero > div { /* Selecciona el div que contiene h1, p, y el botón dentro de .hero */
    position: relative; /* Asegura que este div pueda usar z-index */
    z-index: 2; /* Mayor que el overlay para que el contenido sea interactivo */
}

#menu .bg-white,
#chefs .bg-white {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#menu .bg-white:hover,
#chefs .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

#gallery .overflow-hidden img {
    transition: transform 0.4s ease-out;
}

#gallery .overflow-hidden:hover img {
    transform: scale(1.1);
}

#reservations {
    /* Misma imagen que el hero o una diferente relacionada con el ambiente */
    background-image: url('img/hero.png');
    background-attachment: fixed; /* Efecto parallax sutil */
}