/* public/css/hero-restore.css
   Reglas scoped para la home: solo modifican el section.hero-wrapper y su panel
   Basado en los estilos de producción; no toca otros ficheros.
*/

section.hero-wrapper {
  padding: 25px !important;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: transparent; /* sin fondo extra */
  box-sizing: border-box;
}

/* tarjeta azul (el panel central) */
section.hero-wrapper .hero {
  width: 95%;
  max-width: 1400px;
  height: 450px;
  background: #0A1C2F;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* contenido interno centrado y con padding - SIN background ni shadow */
section.hero-wrapper .hero-content {
  max-width: 600px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  background: none !important;
  box-shadow: none !important;
}

/* clase auxiliar si quieres el título centrado dentro del panel */
section.hero-wrapper .hero-content.centered {
  align-items: center;
  text-align: center;
}

/* Hacer 'Andorra' en negrita */
section.hero-wrapper .hero-content h1 strong {
  font-weight: 700;
}

/* buscador estilo producción */
section.hero-wrapper .search-bar {
  background: white;
  width: 100%;
  max-width: 700px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* input y botón */
section.hero-wrapper .search-input { flex:1; border:none; padding-left:25px; font-size:15px; outline:none; }
section.hero-wrapper .search-btn {
  width:150px; height:100%; background:#f6a702; color:#fff; font-weight:700; border:none; cursor:pointer;
  text-transform:uppercase; border-radius:0 50px 50px 0;
}

/* Si ya no usas imagen en hero, ocultarla */
section.hero-wrapper .hero-image { display: none !important; }

/* Responsive */
@media (max-width: 768px) {
  section.hero-wrapper .hero {
    width: 95%;
    height: auto;
    min-height: 350px;
    padding: 2rem 1rem;
    flex-direction: column;
  }
  section.hero-wrapper .hero-content {
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  section.hero-wrapper .search-bar { flex-direction: column; height:auto; border-radius:8px; gap:0.75rem; }
  section.hero-wrapper .search-btn { width:100%; border-radius:8px; }
}

