/* -----------------------------------------------------------
   BUTTON: Large Ventilation Button
----------------------------------------------------------- */
.button-ventilation-large {
  padding-right: 24px !important;
  padding-left: 32px !important;
  transition: transform 0.3s ease-in-out;
}

/* -----------------------------------------------------------
   Typography / Legal Intro
----------------------------------------------------------- */
.legalintro {
  font-family: Poppins;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  font-variant-numeric: oldstyle-nums proportional-nums;
}

/* -----------------------------------------------------------
   HERO INTRO
----------------------------------------------------------- */
.heroIntroductionOuter h1 {
  text-align: center;
  padding-bottom: 32px;
}

.heroIntroductionOuter .heroIntroductionLead,
.heroIntroductionOuter p {
  text-align: center;
  text-wrap: balance;
}

.heroIntroductionInner {
  max-width: 832px;
  margin: 0 auto;
}

.heroIntroductionDescription p {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  color: #ffffff;
  text-wrap: balance;
}

/* -----------------------------------------------------------
   HERO BUTTONS – Shared
----------------------------------------------------------- */
.heroIntroductionButton {
  margin-top: 0;
  text-align: center;
}

.heroIntroductionButton a {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.heroIntroductionButton-Outer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

/* -----------------------------------------------------------
   BUTTON 1 – Simple Grow (NO layout shift)
----------------------------------------------------------- */

/* Wrapper stays fixed width → no layout shift */
.heroIntroductionButton.button1 {
  display: inline-block;
  position: relative;
  /*overflow: hidden; /* ensures scaling does not resize box */
}

/* Anchor is the actual scale target */
.heroIntroductionButton.button1 a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Subtle internal grow */
.heroIntroductionButton.button1:hover a {
  transform: scale(1.03);
}

/* SVG animation */
.heroIntroductionButton.button1 a svg {
  transition: transform 0.2s ease-out;
  transform-origin: center;
  filter: drop-shadow(-1px 1px 0px rgb(29, 38, 47));
}

.heroIntroductionButton.button1:hover a svg {
  transform: scale(1.05);
}

/* -----------------------------------------------------------
   BUTTON 2 – Press Effect
----------------------------------------------------------- */
.heroIntroductionButton.button2 a {
  display: inline-flex;
  gap: 16px;
}

.heroIntroductionButton.button2 a svg {
  filter: drop-shadow(-1px 1px 0px rgb(29, 38, 47));
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.heroIntroductionButton.button2:hover a svg {
  transform: scale(0.9);
}

/* -----------------------------------------------------------
   BUTTON 3 – Slide Arrow
----------------------------------------------------------- */
.heroIntroductionOuter .button3 svg {
  transition: transform 0.3s ease-in-out;
}

.heroIntroductionOuter .button3:hover svg {
  transform: translateX(10px);
}

/* -----------------------------------------------------------
   Icon Strokes (Light / Dark Themes)
----------------------------------------------------------- */
.nav-button-icon-default-light svg path {
  stroke: #000 !important;
}

.nav-button-icon-default-dark svg path {
  stroke: #fff !important;
}

/* -----------------------------------------------------------
   Responsive
----------------------------------------------------------- */
@media (max-width: 767px) {
  .heroIntroductionOuter h1,
  .heroIntroductionOuter .heroIntroductionLead,
  .heroIntroductionOuter p {
    /* text-align: left; */
  }
}

@media (max-width: 560px) {
  .heroIntroductionButton a {
    width: 100%;
    text-align: center;
  }

  .heroIntroductionButton-Outer {
    display: block;
  }
}
