/**
 * Section Hero Component
 * Autonomous hero section - exact copy of legacy styles with BEM names
 * NO padding, NO max-width - exact replica of original
 */

/* ============================================================
 * MAIN SECTION
 * ============================================================ */

.hero_intro {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ============================================================
 * BACKGROUND LAYER (replaces id="intro" div)
 * ============================================================ */

.hero_intro__background {
  position: absolute;
  width: 100%;
  bottom: 0px;
  min-height: 100vh;
  z-index: 1;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: scroll;
}

/* ============================================================
 * WRAPPER (replaces containerSection0 class="container")
 * ============================================================ */

.hero_intro__wrapper {
  top: 100px;
  position: relative; 
  vertical-align: middle;
  justify-content: center; 
  text-align: center;
  z-index: 1000;
}

/* ============================================================
 * CONTENT (replaces section0LigneBox)
 * ============================================================ */

.hero_intro__content {
  height: 450px;
}

/* ============================================================
 * CONTENT INNER (replaces sectionIntro d-flex flex-row)
 * ============================================================ */

.hero_intro__content-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

/* ============================================================
 * COLUMNS (exact replica of col1, col2, col3)
 * ============================================================ */

.hero_intro__col-left {
  display: block;
  position: relative;
  top: 0px;
  width: 150px;
  flex-shrink: 0;
  height: 450px;
  background-repeat: no-repeat;
  background-image: url('/medias/2024_Titre-G-300x900.webp');
  background-position: bottom right;
  background-attachment: scroll;
  background-size: 100% 100%;
}

.hero_intro__col-center {
  display: block;
  position: relative;
  top: 0px;
  overflow: hidden;
  height: 100%;
}

.hero_intro__col-right {
  width: 150px;
  flex-shrink: 0;
  height: 450px;
  background-repeat: no-repeat;
  background-image: url('/medias/2024_Titre-D-300x900.webp');
  background-position: bottom right;
  background-attachment: scroll;
  background-size: 100% 100%;
}

/* ============================================================
 * CENTER BOX (replaces divTextL2)
 * ============================================================ */

.hero_intro__box {
  overflow: hidden;
  height: 388px;
  background-color: rgba(20, 20, 20, 0.7);
  border-top-left-radius: 40px 40px;
  border-top-right-radius: 40px 40px;
  border-bottom: 0.2rem solid;
  box-shadow: 0 20px 30px 0 #05081c;
  text-align: center;
}

/* ============================================================
 * TYPOGRAPHY
 * ============================================================ */

.hero_intro__title {
  font-family: 'Changa', sans-serif;
  font-weight: 400;
  color: #4dd0e1;
}

.hero_intro__subtitle {
  color: #7bb7e8;
}

.hero_intro__description {
  color: #b0bec5;
}

.hero_intro__wallet-status {
  text-align: center;
  color: #b0bec5;
}

.hero_intro__wallet-status code {
  color: #4caf50;
  font-weight: 600;
}

.hero_intro__cta {
  color: #4dd0e1;
  text-decoration: none;
  font-family: 'Changa', sans-serif;
  font-weight: 400;
}

.hero_intro__cta:hover {
  color: #80deea;
}

.hero_intro__cta i {
  animation: hero_intro-bounce 2s infinite;
}

@keyframes hero_intro-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================================
 * FAIRYNFT ANIMATION (width transition)
 * ============================================================ */

#fairynft {
  width: 0px;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-delay: 0.5s;
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */

/* Mobile: < 768px */
@media (max-width: 767px) {
  .hero_intro {
    height: auto;
    min-height: 100vh;
  }

  .hero_intro__col-left,
  .hero_intro__col-right {
    width: 10px;
  }

  .hero_intro__box {
    /*height: auto;*/
    padding: 20px;
  }
}

/* Tablet: 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero_intro__col-left,
  .hero_intro__col-right {
    width: 100px;
  }
}

