html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;

  /*Colors*/
  --transperant-black: rgba(0, 0, 0, 0.6);
  --background-black: black;
  --background-mid: #0d0d0d;
  --background-light: #1a1a1a;
  --text-main: white;
  --text-light: #cccccc;
  --text-dark: #666666;
  --brand-color: #55ff00;
  --brand-color-dark: #226600;

  /*State Colors*/
  --state-hold-color: orange;
  --state-scrub-color: red;
  --state-go-color: green;

  /*Text Sizes*/
  --title-40px: 40px;
  --text-24px: 24px;
  --text-20px: 20px;
  --text-18px: 18px;
  --text-14px: 14px;
  --text-12px: 12px;

  /*Text Fonts*/
  --main-text-font: Orbitron;
  --second-text-font: Orbit;
  --decription-text-font: TASA Orbiter;

  /*Other*/
  --background-blur: blur(60px);
  --transition-time: 0.4s;
}
p,
h1,
h2 {
  padding: 0;
  margin: 0;
}
.MASFA_logo {
  max-width: 150px;
  height: auto;
  transition: var(--transition-time);
}
#home-section-logo {
  transition: var(--transition-time);
}
#home-section-logo:hover {
  filter: brightness(50%);
}

.mobile-navbar {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: var(--background-blur);
  z-index: 15;
}
.mobile-navbar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu-header {
  padding-block: 24px;
  padding-inline: 40px;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header-svg {
  display: none;
  fill: var(--brand-color);
  cursor: pointer;
  transition: var(--transition-time);
}
.header-svg svg:hover {
  fill: var(--brand-color-dark);
}

.main-nav-bar {
  top: 0;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
  position: fixed;

  padding: 24px 40px;
  background-color: var(--transperant-black);
  backdrop-filter: var(--background-blur);

  border-bottom: 1px solid var(--brand-color-dark);

  display: flex;
  justify-content: space-between;

  transition: var(--transition-time);
}
.main-nav-bar.shrink {
  padding: 14px 40px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  backdrop-filter: none;
  border-bottom: none;
}

.MASFA_logo.shrink {
  max-width: 140px;
  height: auto;
}

.nav-link {
  margin-left: 24px;
  color: var(--text-main);
  font-size: var(--text-14px);
  text-decoration: none;
  font-family: var(--second-text-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-time);
}
.nav-link:hover {
  color: var(--brand-color);
}
.main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--main-text-font);
  font-weight: normal;
  font-size: var(--text-18px);
  border-radius: 10px;
  padding: 14px 18px;
  background-color: var(--background-black);
  outline: 1px solid var(--brand-color-dark);
  transition: var(--transition-time);
}
.main-button:hover {
  color: var(--text-main);
  background-color: var(--brand-color-dark);
}
.main-button-nostream {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--main-text-font);
  font-weight: normal;
  font-size: var(--text-18px);
  border-radius: 10px;
  padding: 14px 18px;
  background-color: var(--background-light);
  outline: none;
  transition: var(--transition-time);
}
.btn-width-fit {
  width: fit-content;
}
.btn-width-fill {
  width: auto;
}
.big-title {
  text-transform: uppercase;
  font-size: var(--title-40px);
  color: var(--text-main);
  font-weight: bold;
  font-family: var(--main-text-font);
}
.small-title {
  font-size: var(--text-24px);
  color: var(--text-main);
  font-weight: bold;
  font-family: var(--main-text-font);
}
.text-description-intro {
  font-size: var(--text-18px);
  color: var(--text-main);
  font-weight: normal;
  font-family: var(--main-text-font);
}
.description {
  font-size: var(--text-18px);
  color: var(--text-main);
  font-weight: normal;
  font-family: var(--decription-text-font);
  letter-spacing: 2xp;
}
.intro-section {
  margin-top: -69.29px;
  height: 100vh;
  background-image: url(assets/spacex-header-image.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;

  animation: intro-animation linear;
  animation-timeline: view();
}
@keyframes intro-animation {
  from {
    background-position: center 100px;
  }
  to {
    background-position: center -200px;
  }
}
.intro-section-gradient {
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 95%
  );
  padding-left: 40px;
  padding-right: 40px;
}
.intro-text-container {
  position: absolute;
  bottom: 100px;
}
.intro-text-container h1 {
  animation: intro-animation-h1 1s ease-in-out;
}
.intro-text-container p {
  animation: intro-animation-p 1s ease-in-out;
  animation-delay: 100ms;
}

.intro-text-container a {
  animation: intro-animation-a 1s ease-in-out;
  animation-delay: 200ms;
}

@keyframes intro-animation-h1 {
  from {
    filter: opacity(0);
    transform: translateY(24px);
  }
  to {
    filter: opacity(1);
  }
}
@keyframes intro-animation-p {
  from {
    filter: opacity(0);
    transform: translateY(24px);
  }
  to {
    filter: opacity(1);
  }
}
@keyframes intro-animation-a {
  from {
    filter: opacity(0);
    transform: translateY(24px);
  }
  to {
    filter: opacity(1);
  }
}

.mb-40 {
  margin-bottom: 40px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-14 {
  margin-bottom: 14px;
}
.sep-line {
  width: auto;
  height: 1px;
  background-color: var(--background-light);
}
.section {
  background-color: var(--background-black);
  padding-inline: 40px;
  padding-block: 100px;
}
.launch-card {
  display: flex;
  flex-direction: row;
  outline: 1px solid var(--brand-color-dark);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--background-mid);
}
#rocket_img {
  height: auto;
  width: 600px;
  object-fit: cover;
}

.launch-info-container {
  width: 100%;
  padding-left: 40px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
}
.micro-dark-text {
  font-size: var(--text-14px);
  font-family: var(--second-text-font);
  color: var(--text-dark);
}
.launch-info-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.countdown-simple-overlay {
  font-family: var(--main-text-font);
  font-size: var(--text-24px);
  color: var(--text-main);
  display: flex;
  flex-direction: row;
}
#countdown_state,
#countdown_timer,
#mission_name,
#launch_NET_time {
  font-family: var(--main-text-font);
  font-size: var(--text-24px);
  color: var(--text-main);
}
#countdown_timer {
  width: 120px;
}
.description {
  font-size: var(--text-18px);
  font-family: var(--decription-text-font);
  color: var(--text-light);
  line-height: 32px;
}
.launch-details-grid {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
}
.launch-details-container {
  width: 100%;
}
.launch-detail-text-20px {
  font-size: var(--text-20px);
  font-family: var(--second-text-font);
  color: var(--text-main);
}
.live-text {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.dot {
  width: 14px;
  height: 14px;
  background-color: var(--brand-color);
  border-radius: 40px;
  filter: blur(5px);
  animation: dot-glow 1s infinite ease-out alternate-reverse;
}
@keyframes dot-glow {
  from {
    filter: brightness(0);
  }
  to {
    filter: brightness(1);
  }
}
.live-stats-data {
  padding: 40px 24px;
  background-color: var(--background-mid);
  border-radius: 10px;
  outline: 1px solid var(--brand-color-dark);
}
.live-stats-data-container {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}
.time-stamped-update-text {
  font-size: var(--text-18px);
  font-family: var(--second-text-font);
  color: var(--text-dark);
}
.text-and-img {
  display: flex;
  gap: 100px;
  flex-direction: row;
  justify-content: space-between;

  overflow: hidden;
}
.img {
  border-radius: 10px;
  height: auto;
  width: 600px;
  object-fit: cover;
}
.about-us-section {
  background-color: white;
  padding-inline: 40px;
  padding-block: 100px;
}
.about-us-section .big-title {
  color: black;
}
.about-us-section .description {
  color: var(--background-light);
}
.sub-title {
  color: var(--brand-color-dark);
  font-family: var(--second-text-font);
  text-transform: uppercase;
}
.faq_question_container {
  border-radius: 10px;
  padding: 24px;
  background-color: var(--background-mid);
  outline: 1px solid var(--background-light);
}
.question-title-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}
.faq-title {
  font-size: var(--text-18px);
  font-family: var(--main-text-font);
  font-weight: bold;
  color: var(--text-main);
}
.faq-plus-icon {
  fill: var(--brand-color);
  transition: transform ease-in-out 0.4s;
}
.answer {
  max-height: 0;
  opacity: 0;
  padding-right: 40px;
  overflow: hidden;
  transition: ease-in-out 1.4s;
}

.faq_question_container.active .answer {
  max-height: 800px;
  margin-top: 24px;
  opacity: 1;
}
.faq_question_container.active .faq-plus-icon {
  transform: rotate(45deg);
}
.footer {
  padding: 40px;
  background-color: var(--background-mid);
}
.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.follow-us-text-container {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.social-media-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--text-main);
  width: 40px;
  height: 40px;
  background-color: var(--background-light);
  border-radius: 10px;
  transition: var(--transition-time);
}
.social-media-icon-btn:hover {
  background-color: var(--brand-color-dark);
}
.links-right {
  display: flex;
  flex-direction: row;
}
.links-content-container {
  width: 250px;
  display: flex;
  flex-direction: column;
}
.links-container-title {
  font-size: var(--text-18px);
  font-family: var(--main-text-font);
  font-weight: bold;
  color: var(--brand-color);
}
.links-content-container .nav-link {
  margin-left: 0;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-bottom-text {
  color: var(--text-dark);
  font-family: var(--second-text-font);
  font-size: var(--text-12px);
}
.company-info-left .MASFA_logo {
  max-width: 250px;
  height: auto;
}
.small-text-lable {
  font-family: var(--main-text-font);
  color: var(--brand-color);
  background-color: #113300;
  padding: 8px 12px;
  width: fit-content;
  font-size: 14px;
  border-radius: 10px;
  letter-spacing: 10%;
}

.changelog-section {
  padding: calc(100px + 69.29px) 300px;
}

.changelog-version {
  font-family: var(--main-text-font);
  color: var(--brand-color);
  background-color: #113300;
  padding: 8px 18px;
  width: fit-content;
  font-size: 18px;
  border-radius: 10px;
  letter-spacing: 10%;
}
li {
  padding-left: 18px;
}

li::marker {
  color: var(--brand-color);
}
