/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #fff;
  background-color: #1a1a2e;

  /* Full-screen fixed background image */
  background-image: url('Media/Earthset captured through the Orion spacecraft.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* ── Dark overlay ── */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 30, 0.62) 0%,
    rgba(30, 10, 20, 0.55) 100%
  );
  z-index: 0;
}

/* ── Main container ── */
.container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  animation: fadeInUp 1.4s ease both;
}

/* ── Glassmorphism card ── */
.card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

/* ── Title ── */
.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.6rem;
}

/* ── Subtitle ── */
.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 220, 200, 0.9);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

/* ── Divider ── */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  margin: 0 auto 2rem;
  width: 60%;
}

/* ── Body text ── */
.body-text {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.1rem;
}

/* ── Closing line ── */
.closing {
  margin-top: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 210, 180, 0.95);
  letter-spacing: 0.03em;
}

/* ── Animation ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .card {
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
  }

  .divider {
    width: 80%;
  }
}

@media (max-width: 380px) {
  .card {
    padding: 2rem 1.2rem;
  }
}
