/* ========== GENERAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== BODY ========== */
body {
  background-color: #000;
  font-family: 'Aileron', sans-serif;
  font-weight: 300; /* Aileron Light */
  color: white;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}


h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
  font-weight: normal;
  color: white;
}


/* ========== HERO SECTION (INDEX PAGE) ========== */
.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: auto;
  transform: translate(-50%, -50%);
}

/* ========== TEXT & BUTTONS (INDEX PAGE) ========== */
.button-group {
  position: absolute;
  top: calc(50% + 40vh); /* lowered by 50px */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.hero-button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.hero-button:hover {
  background-color: white;
  color: black;
}

.launch-info {
  position: absolute;
  top: calc(50% + 35vh);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.1rem;
  text-align: center;
}

/* ========== FOOTER ========== */
.site-footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9rem;
}

/* ========== ABOUT/FOUNDER PAGE LAYOUT ========== */
.about-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.left-side {
  flex: 1;
  position: relative;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-image,
.founder-image,
.bre-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: 0;
}

.about-image {
  max-width: 75%;
}

.founder-image {
  max-width: 65%;
}

.bre-image {
  max-width: 50%;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  max-width: 50vw;
  margin-left: -150px;
  position: relative;
  z-index: 2;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-text h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  color: white;
  margin-bottom: 20px;
}

.about-text a {
  color: #cccccc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-text a:hover {
  color: #ffffff;
}



/* BUTTONS BELOW TEXT (INSIDE TEXT COLUMN) */
.about-buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  z-index: 2;
}

/* ========== MOBILE RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .background-image {
    width: 90%;
    transform: translate(-50%, calc(-50% - 75px));
  }

  .button-group {
    flex-direction: column;
    gap: 15px;
    top: calc(50% + 20vh);
  }

  .hero-button {
    width: 70%;
    margin: 0 auto;
  }

  .launch-info {
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 10;
    font-size: 1.2rem;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
  }

  .left-side {
    height: auto;
    padding: 20px 0;
  }

  .about-content {
    max-width: 100%;
    margin-left: 0;
    padding: 20px;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-buttons {
    justify-content: center;
    margin-top: 30px;
  }

  .hero-button {
    width: auto;
    margin: 0 10px;
  }
}

.board-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  height: auto;
  z-index: 0;
}

