/* --- ESTILOS HERO SECTION --- */
.hero-section {
    width: 100%;
    height: 190px; /* Ajustable según necesidad */
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background-color: #ffffff;
    padding: 20px 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 100px;
}

.hero-content h1 {
    margin: 0;
    font-family: 'Playfair Display', serif; /* Tipografía elegante para el título */
    font-size: 48px;
    color: #1a2b3c;
    font-weight: 400;
    
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 992px) {
    .nav-list {
        justify-content: flex-start; /* Alinea al inicio para scroll lateral */
        padding-left: 10px;
    }
    
    .hero-content {
        padding: 15px 40px;
        margin-top: 140px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 200px;
        
    }
    
    .hero-content {
        width: 80%;
        text-align: center;
        padding: 10px 20px;
        margin-top: 160px;
    }
}

/* Fuentes similares a la imagen */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Playfair+Display:wght@600&display=swap');

.culinary-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333333;
}

/* Banner Azul Superior */
.app-banner {
  background-color: #ebf5fb; /* Azul muy claro */
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-container svg {
  width: 45px;
  height: 45px;
}

.text-container h3 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #222;
}

.text-container p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.text-container a {
  color: #222;
  font-weight: 700;
  text-decoration: underline;
}

/* Contenido Principal inferior */
.main-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.main-content h2 {
  font-family: 'Playfair Display', serif; /* Elegante para el título */
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #1a1a1a;
  font-weight: 600;
}

.main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  font-weight: 300;
}

.main-content strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Ajustes para móviles */
@media (max-width: 600px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .main-content h2 {
    font-size: 2rem;
  }
}

.restaurant-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.item-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  align-items: center;
}

/* --- EFECTO LOGO SOBRE IMAGEN --- */
.item-image {
  position: relative; /* Necesario para posicionar el logo dentro */
  overflow: hidden;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(207, 203, 203, 0.85); /* Fondo blanco traslúcido */
  padding: 10px 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.logo-overlay img {
  max-height: 40px; /* Ajusta según el tamaño de tus logos */
  width: auto;
}

.item-image > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* --- TEXTOS Y ETIQUETAS --- */
.item-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}

.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.labels span {
  font-size: 10px;
  font-weight: 700;
  border: 1px solid #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  color: #00021a;
  letter-spacing: 0.5px;
  background-color: #e2e2e2;
}

.item-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* --- RESPONSIVIDAD TOTAL --- */

/* Tablets */
@media (max-width: 900px) {
  .item-card {
    gap: 30px;
  }
  .item-info h3 { font-size: 1.8rem; }
}

/* Móviles */
@media (max-width: 650px) {
  .item-card {
    grid-template-columns: 1fr; /* Una sola columna */
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .item-image > img {
    height: 250px; /* Imagen un poco más pequeña en móvil */
  }
  
  .logo-overlay {
    padding: 8px 12px;
  }

  .logo-overlay img {
    max-height: 30px;
  }
}