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

body {
  background-color: #11212C;
  color: #E4E0DA;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}


/* =========================================================
   MAIN LAYOUT FIX — keeps footer from jumping upward
   ========================================================= */
main {
  padding-top: 0px;      /* space when mobile nav expands */
  position: relative;
  z-index: 1;
}


/* ===== HEADER / NAV ===== */
header {
  background-color: #11212C;
  color: #E4E0DA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  color: #E4E0DA;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  color: #FAB600;
}


/* ===== HAMBURGER BUTTON ===== */
#hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #E4E0DA;
  cursor: pointer;
}


/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 900px;
  height: 4px;
  margin: 60px auto;
  background-color: #FAB600;
  border-radius: 4px;
  box-shadow:
    0 0 12px rgba(242, 201, 76, 0.55),
    0 0 22px rgba(242, 201, 76, 0.35);
}


/* ===== HERO ===== */
#hero {
  background-image: url("images/eclipse.jpg");
  background-size: clamp(130%, 3vw + 130%, 320%);
  background-position: center 55%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 140px 20px 120px;
  color: #E4E0DA;
}

#hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

#hero p {
  max-width: 500px;
  margin: 0 auto 32px auto;
  font-size: 18px;
}


/* ===== UNIVERSAL BUTTON STYLE ===== */
.button,
.btn,
#hero input[type="submit"],
#join input[type="submit"] {
  display: inline-block;
  background-color: #FAB600;
  color: #11212C;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.button:hover,
.btn:hover,
#hero input[type="submit"]:hover,
#join input[type="submit"]:hover {
  background-color: #E4E0DA;
  transform: translateY(-2px);
}

.button:active,
.btn:active {
  transform: translateY(0);
}

/* Card-specific smaller width */
.card .btn {
  width: 140px;
  text-align: center;
  margin: 0 auto;
  display: block;
}


/* ===== SECTION GENERAL ===== */
section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-size: 32px;
  margin-bottom: 24px;
}


/* ===== ABOUT ===== */
#about p {
  max-width: 700px;
  margin: 0 auto;
}


/* =============================================================================
   ⭐⭐⭐ STAR BACKGROUND BAND (Flights + Testimonials Only)
============================================================================= */
#stars-band {
  position: relative;
  background-image: url("images/stars-2179083.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: visible;
  z-index: 1;
}
#stars-band .card h3,
#stars-band .card p {
  text-shadow:
    0 0 6px rgba(0,0,0,1),
    0 0 12px rgba(0,0,0,0.95),
    0 0 18px rgba(0,0,0,0.85);
}
#stars-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(17, 33, 44, 0) 0%, #11212C 100%);
  pointer-events: none;
}

#stars-band::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(17, 33, 44, 0) 0%, #11212C 100%);
  pointer-events: none;
}


/* =============================================================================
   DESTINATIONS & FLIGHTS CARDS
============================================================================= */
.card-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.card {
  background-color: #0E1A24;
  width: 320px;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  margin-bottom: 18px;
}


/* =============================================================================
   TESTIMONIALS
============================================================================= */
#testimonials-section {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}

#testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.subtitle {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 50px;
}

#testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial-card {
  background: #7a1f1f;
  padding: 30px 32px;
  border-radius: 20px;
  text-align: left;
  color: white;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.35);
  outline: 1px solid rgba(255,255,255,0.05);
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.author {
  font-weight: bold;
  font-size: 0.9rem;
}

.quote {
  font-size: 2.8rem;
  font-style: italic;
  margin-top: 80px;
}

.source {
  font-size: 1.3rem;
  opacity: 0.85;
}


/* =============================================================================
   SAFETY
============================================================================= */
#safety ul {
  list-style: none;
  margin-top: 16px;
}
#safety li {
  margin: 6px 0;
}


/* =============================================================================
   JOIN FORM
============================================================================= */
#join {
  border-radius: 12px;
  padding: 30px;
  margin: 60px auto;
  width: 90%;
  max-width: 650px;
  text-align: left;
}

#join h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 32px;
}

#join p {
  text-align: center;
  margin-bottom: 25px;
  color: #B7B1A9;
}

#join input[type="text"],
#join input[type="email"],
#join textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 20px;
  border: 6px solid #F2C94C;
  box-shadow: 0 0 18px rgba(242,201,76,0.35);
  color: #E4E0DA;
  background: #0E1A24;
}


/* =============================================================================
   FOOTER
============================================================================= */
footer {
  background-color: #0E1A24;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

footer a {
  color: #E4E0DA;
  text-decoration: none;
}

footer a:hover {
  color: #FAB600;
}


/* =============================================================================
   MEDIA QUERIES
============================================================================= */

/* Hero scaling refinements */
#hero { background-size: 100%; }
@media (max-width: 1100px) { #hero { background-size: 130%; } }
@media (max-width: 900px)  { #hero { background-size: 160%; } }
@media (max-width: 600px)  { #hero { background-size: 220%; } }

/* Mobile Layout */
@media (max-width: 700px) {

  /* HAMBURGER shows, NAV hides */
  #hamburger {
    display: block;
    margin-left: auto;
  }

  header nav {
    display: none;
    flex-direction: column;
    background-color: #0E1A24;
    width: 100%;
    padding: 20px;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  header nav.open {
    display: flex;
  }

  /* Cards stack */
  .card-row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 360px;
  }

	/* Mobile only */
@media (max-width: 700px) {
  main {
    padding-top: 0px;
  }
}
	
  /* Footer nav stacks WITHOUT jumping upward */
  footer ul {
    flex-direction: column;
    gap: 10px;
  }
}