/* Hero section */
.hero {
  position: relative;
  padding: 1rem 0 6rem;
  overflow: hidden;
  color: #fff7e6;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 12, 15, 0.25) 0%,
    rgba(11, 12, 15, 0.4) 50%,
    rgba(11, 12, 15, 0.7) 100%
  );
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Overlay radial detrás del contenido del texto para mejorar legibilidad */
  background: radial-gradient(
    ellipse 80% 100% at 30% 70%,
    rgba(11, 12, 15, 0.35) 0%,
    rgba(11, 12, 15, 0.2) 40%,
    transparent 70%
  );
  z-index: 2;
}

.hero-poster {
  background: linear-gradient(
      180deg,
      rgba(11, 12, 15, 0.5) 0%,
      rgba(11, 12, 15, 0.65) 50%,
      rgba(11, 12, 15, 0.8) 100%
    ),
    url("../design/HOZHO FILTER.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-logo-text {
  max-width: 100%;
  height: auto;
  width: clamp(300px, 80vw, 600px);
  display: block;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  inset: 10% auto auto 45%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(254, 250, 177, 0.25), transparent 70%);
  filter: blur(20px);
  z-index: 2;
  opacity: 0.6;
}

.hero-media {
  position: relative;
  min-height: 320px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media .media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

