/* ============================================================================
   WOW — HERO Component v2 (Visuals Only)
   File: wow_css/basics/hero2.css
   ----------------------------------------------------------------------------
   Structure:
     TOP (text + logos) → MEDIA (image/video + gradients) → BOTTOM (text block)
   Uses:
     --hero2-head-color, --hero2-down-color, --hero2-head-text, --hero2-down-text
   ========================================================================== */

.wow-hero2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--hero2-down-color, var(--bg-1));
  color: var(--hero2-down-text, var(--text-muted));
  overflow: hidden;
  box-sizing: border-box;
  direction: rtl;
}

.wow-hero2[dir="ltr"] {
  direction: ltr;
}


/* ------------------------------------------------------------
   1) TOP STRIP
   ------------------------------------------------------------ */
.wow-hero2__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  padding: 18px 20px;
  background: var(--hero2-head-color, var(--bg-1));
  color: var(--hero2-head-text, var(--text-muted));
  flex-wrap: nowrap;
}

.wow-hero2__top-right {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
}

.wow-hero2__top-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.wow-hero2__logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.wow-hero2__logo {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.wow-hero2__top-text {
  font-size: 30px;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  
}

.wow-hero2__top-text-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.wow-hero2__top-text-secondary {
  font-size: 14px;
  opacity: 0.8;
  align-self: baseline;
}

.wow-hero2__venue-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  padding: 18px 24px;
  background: var(--hero2-head-color, var(--bg-1));
  color: var(--hero2-head-text, var(--text-muted));
  direction: rtl;
  font-family: 'Assistant', sans-serif;
}

.wow-hero2__venue-right {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: 1;
}

.wow-hero2__venue-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.wow-hero2__venue-subtitle {
  font-size: 15px;
  line-height: 1;
  opacity: 0.8;
}

.wow-hero2__venue-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wow-hero2__venue-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
}


/* ------------------------------------------------------------
   2) MEDIA
   ------------------------------------------------------------ */
.wow-hero2__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.wow-hero2__media-slot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  max-height: 100vh;
}

.wow-hero2__gradient-top,
.wow-hero2__gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.wow-hero2__gradient-top {
  top: 0;
  height: 28%;
  background: linear-gradient(180deg, var(--hero2-head-color, var(--bg-1)) 0%, rgba(0,0,0,0) 100%);
}

.wow-hero2__gradient-bottom {
  bottom: 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, var(--hero2-down-color, var(--bg-1)) 100%);
}


/* ------------------------------------------------------------
   3) BOTTOM STRIP
   ------------------------------------------------------------ */
.wow-hero2__bottom {
  background: var(--hero2-down-color, var(--bg-1));
  color: var(--hero2-down-text, var(--text-muted));
  padding: 18px 24px 8px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wow-hero2__title {
  margin: -40px 0 0 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 0.85;
  padding-bottom: 2px;
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
  z-index: 999;
}

.wow-hero2[data-gradients="off"] .wow-hero2__title {
  margin: 20px 0 0 0;
}

.wow-hero2__subtitle {
  margin: 4px 0px 0px 0px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
}

.wow-hero2[dir="rtl"] .wow-hero2__subtitle {
  margin-left: 32px;
}

.wow-hero2__details {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  opacity: 0.95;
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
}

.wow-hero2__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.wow-hero2[data-mode="dark"] .wow-hero2__divider,
.wow-hero2[data-mode="dark_light"] .wow-hero2__divider {
  background: rgba(255, 255, 255, 0.18);
}

.wow-hero2__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  white-space: pre-line;
  font-family: var(--wow-font-family, 'Assistant', sans-serif);
}


/* ------------------------------------------------------------
   4) RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .wow-hero2__top {
    flex-direction: row;
    align-items: center;
  }

  .wow-hero2__logos {
    justify-content: flex-end;
  }
}
