/**
 * Hero unificado (Tienda, Blog índice, Nosotros, Contacto).
 * Añadir clase .fx-page-hero al contenedor .container.banner (o equivalente).
 * Títulos con RoseBlossom (misma familia que la home).
 */

@font-face {
  font-family: 'RoseBlossom';
  src: url('../fonts/rose_blossom.ttf') format('truetype'),
    url('../fonts/rose_blossom.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.fx-page-hero {
  position: relative !important;
}

/* Imagen: altura coherente en escritorio */
@media (min-width: 992px) {
  .fx-page-hero #banner-figure,
  .fx-page-hero #banner-about {
    display: block !important;
    width: 100% !important;
    max-height: 600px !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .fx-page-hero #banner-figure img,
  .fx-page-hero #banner-about img {
    width: 100% !important;
    height: 600px !important;
    max-height: 600px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }
}

/* Título superpuesto centrado (sustituye left/top fijos del theme) */
.fx-page-hero .text-banner,
.fx-page-hero .title-banner {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: 96% !important;
  max-width: min(96vw, 52rem) !important;
  text-align: center !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

.fx-page-hero .text-banner h1,
.fx-page-hero .title-banner h1 {
  font-family: 'RoseBlossom', 'Abril Fatface', Georgia, serif !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  color: #fff !important;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.55) !important;
}

@media (min-width: 992px) {
  .fx-page-hero .text-banner h1,
  .fx-page-hero .title-banner h1 {
    font-size: clamp(4rem, 8.5vw, 7.5rem) !important;
    line-height: 1.02 !important;
  }
}

@media (max-width: 991px) {
  .fx-page-hero .text-banner h1,
  .fx-page-hero .title-banner h1 {
    font-size: clamp(2.5rem, 12vw, 4.5rem) !important;
    line-height: 1.05 !important;
  }

  .fx-page-hero .text-banner p,
  .fx-page-hero .title-banner p {
    font-family: Poppins, sans-serif !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45) !important;
  }
}
