.aura-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 40px);
  background: transparent;
}

.region-hero .aura-hero {
  display: flex !important;
}

/* Ocultar sliders i blocs de Ruhi en aquesta región */
.region-hero > *:not(.aura-hero),
.block-system-main-block,
[data-drupal-selector*="hero"] .slick,
.slick-container {
  display: none !important;
}

.aura-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.aura-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1) blur(0.5px);
  opacity: 0.6;
}

.aura-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #1a1a1a;
  padding: 30px;
  background: transparent;
}

.aura-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  margin: 0 0 160px;
  font-weight: 400;
  color: #1a1a1a;
}

.aura-hero__subtitle {
  font-size: clamp(16px, 5vw, 24px);
  line-height: 1.6;
  margin: 0 100px 30px 0;
  color: #2e2e2e;
}

.aura-hero__button {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #d1d1d1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #1a1a1a;
  background: #fff;
  transition: all 0.3s ease;
}

.aura-hero__button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.aura-hero__image-wrapper {
  position: relative;
  z-index: 1;
  display: none;
  justify-content: center;
  align-items: center;
}

.aura-hero__pattern,
.aura-hero__foreground {
  max-width: 100%;
  height: auto;
}

.aura-hero__pattern {
  position: absolute;
  opacity: 0.6;
  filter: blur(0.5px);
}

@media (max-width: 768px) {
  .aura-hero {
    padding: 60px 24px;
  }
  .aura-hero__content {
    padding: 0 24px;
  }

  .aura-hero__title {
    margin: 0 0 30px;
  }
  .aura-hero__subtitle {
    margin: 0 70px 200px 0;
  }
}

@media (min-width: 769px) {
  .aura-hero {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding: clamp(40px, 5vw, 80px);
  }
  
  .aura-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
  
  .aura-hero__content {
    flex: 0 0 50%;
    max-width: none;
    position: relative;
    z-index: 2;
  }
  
  .aura-hero__image-wrapper {
    flex: 1 1 50%;
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .aura-hero {
    gap: 60px;
    padding: 0px clamp(40px, 8vw, 120px);
  }
}

