@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Variables */
:root {
  --primary-text-color: #fff;
  --secondary-color: #000;
}

.bgc-image {
  height: 100vh;
  width: 100vw;
  background-image: url("https://sxcontent9668.azureedge.us/cms-assets/assets/Flight_11_Website_Desktop_4_428dc3337e.jpg");
  background-size: 100% 100%;
  object-fit: cover;
  z-index: -5;
  filter: brightness(60%);
}

/* Navbar */
.container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  z-index: 10;
}


.logo {
  margin-left: 3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(240, 240, 250, 0.8);
  font-weight: 600;
  font-size: 0.8rem;
}

.nav-links a:hover {
  color: var(--primary-text-color);
}

.vehicals {
  position: relative;
  display: flex;
  gap: .3rem;
  margin-left: 2rem;
}

.vehicals img {
  width: 0.7vw;
}

.vehical-menu {
  display: none;
  position: absolute;
  top: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vehical-menu ul,
.vehical-menu {
  list-style-type: none;
}

.vehicals:hover .vehical-menu {
  display: block;
}

.vehicals img {
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vehicals:hover img {
  opacity: 1;
}


.company {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.company img {
  width: 0.7vw;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.company:hover img {
  opacity: 1;
}

.company-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 999;
}

.company-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.company-menu a {
  display: block;
  color: rgba(240, 240, 250, 0.8);
  padding: 5px 0;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-menu a:hover {
  color: var(--primary-text-color);
}

.company:hover .company-menu {
  display: block;
}

.time-bar {
  margin-left: 6rem;
  height: 4vh;
  width: 15vw;
  padding: 5px 8px;
  border: 0.2px solid rgba(255, 255, 255, .25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  color: var(--primary-text-color);
  font-family: monospace;
  gap: 1.5rem;
}

.nav-toggle {
    display: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    font-weight:200;
    transform: scaleX(0.85);
}

.nav-links.show {
  display: flex;
  flex-direction: column;
  background: black;
  top: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}

/* Hero Section */
.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1;
  text-align: left;
  overflow: hidden;
}

.hero {
  position: absolute;
  top: 37%;
  left: 4%;
}

.para {
  padding-top: .6rem;
  color: var(--primary-text-color);
}


.paragraph {
  color: var(--primary-text-color);
  margin-bottom: 10px;
  font-size: 1rem;
  word-spacing: .5rem;
  text-decoration: none;
  display: flex;
}

.big-text {
  font-size: 5rem;
  font-weight: 600;
  line-height: 95%;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #fff;
}

.get-started-btn {
  color: var(--primary-text-color);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.get-started-btn img {
  width: 16px;
  height: 16px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), filter 0.3s ease;
}

.get-started-btn:hover {
  background-color: var(--primary-text-color);
  color: var(--secondary-color);
  opacity: 1;
}

.get-started-btn:hover img {
  transform: translateX(.5rem);
  filter: invert(5);
}

/* Documentation Section */
.documentation-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(to right, rgba(0, 0, 0, 1.5));
  color: var(--primary-text-color);
  display: flex;
  gap: 1rem;
  font-size: .9rem;
  line-height: 1.5rem;
  font-weight: 300;
}

.documentation {
  display: flex;
  margin: auto;
  gap: 2rem;
  padding: 4rem;
}

.documentation-1 {
  line-height: 1.7rem;
}

p {
  margin-bottom: 15px;
}

/* Countdown Section */
.countdown-section {
  height: 100%;
  width: 100%;
}

.countdown-section h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sub-text {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Table Styling */
.countdown-section {
  height: 100%;
  width: 100%;
  background-color: black;
  color: white;
  font-family: 'Courier New', monospace;
  padding: 70px;
}

.countdown-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.countdown-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}

th {
  color: #aaa;
  font-weight: 400;
}


/* Luanch-infofraphic Section */
.Luanch-infofraphic {
  height: 100%;
  width: 100%;
  background-color: #000;
}

.launch {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.launch img {
  height: 100%;
  width: 100%;
}

/* Flight Test Timeline */
.FlightTest-section {
  position: relative;
  width: 100%;
  background-color: black;
  color: white;
  padding: 70px;
}

.FlightTest-section h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.FlightTest-section p {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}

th {
  color: #aaa;
  font-weight: 400;
}

/* main-footer-Section */
.main-footer {
    width: 100%;
    background:linear-gradient(to bottom, #101010, #000000);
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-left{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.60);
    object-fit: cover;
    padding: 8px;
}

.footer-left img{
    width: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: .8;
}

.footer-copyright{
    color: #fff;
    font-family: D-DIN;
    font-size: .75rem;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.copyright{
    color: #fff;
    font-size: .9rem;
}
