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

html, body {
  height: 100%;
  overflow: hidden;
  background: #03050c;
  color: #d8d2c4;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── Nebula background image ─────────────────────── */
.nebula-bg {
  position: fixed;
  inset: -40px; /* extra bleed for parallax movement */
  background: url('nebula.jpg') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

/* ── Canvas (stars & shooting stars) ─────────────── */
#cosmos {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Dark center overlay for text readability ────── */
.center-darken {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 60% at 50% 50%,
      rgba(3, 5, 12, 0.75) 0%,
      rgba(3, 5, 12, 0.5) 40%,
      rgba(3, 5, 12, 0.15) 70%,
      transparent 100%
    );
}

/* ── Edge vignette ───────────────────────────────── */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(3,5,12,0.4) 80%, rgba(3,5,12,0.8) 100%);
}

/* ── Landing nav (subtle, top-right) ─────────────── */
.nav-landing {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 2.5rem;
  padding: 2rem 3rem;
  opacity: 0;
  animation: fadeIn 2s ease 2.5s forwards;
}

.nav-landing .nav-link {
  color: rgba(200, 190, 170, 0.55);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  transition: color 0.3s ease;
  font-weight: 300;
}

.nav-landing .nav-link:hover {
  color: #c4a86a;
}

@media (max-width: 640px) {
  .nav-landing {
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
  }
  .nav-landing .nav-link {
    font-size: 0.9rem;
  }
}

/* ── Content ─────────────────────────────────────── */
.content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

/* ── Eye symbol ──────────────────────────────────── */
.eye-symbol {
  width: 100px;
  color: #c4a86a;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeIn 2s ease 0.3s forwards;
  filter: drop-shadow(0 0 8px rgba(196, 168, 106, 0.15));
}

/* ── Logo ────────────────────────────────────────── */
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  color: #efe8d8;
  text-shadow: 0 0 40px rgba(100, 80, 50, 0.3);
  opacity: 0;
  animation: fadeIn 2s ease 0.6s forwards;
}

/* ── Tagline ─────────────────────────────────────── */
.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: #c4a86a;
  margin-top: 0.25rem;
  opacity: 0;
  animation: fadeIn 2s ease 0.9s forwards;
}

/* ── Divider ─────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c4a86a66, transparent);
  margin: 1.8rem 0;
  opacity: 0;
  animation: fadeIn 2s ease 1.2s forwards;
}

/* ── Bio text ────────────────────────────────────── */
.bio {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.9;
  color: #c0b8a8;
  max-width: 520px;
  opacity: 0;
  animation: fadeIn 2s ease 1.4s forwards;
}

/* ── Coming soon ─────────────────────────────────── */
.coming-soon {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7a7060;
  opacity: 0;
  animation: fadeIn 2s ease 1.7s forwards;
}

/* ── CTA button ──────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(196, 168, 106, 0.3);
  border-radius: 100px;
  color: #d8d2c4;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.12em;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeIn 2s ease 2s forwards;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cta:hover, .cta:focus-visible {
  border-color: #c4a86a;
  color: #efe8d8;
  background: rgba(196, 168, 106, 0.1);
  box-shadow: 0 0 30px rgba(196, 168, 106, 0.15);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.ig-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Helpers ──────────────────────────────────────── */
.hide-mobile { display: inline; }

@media (max-width: 480px) {
  .hide-mobile { display: none; }
  .eye-symbol { width: 72px; margin-bottom: 1.2rem; }
  .divider { margin: 1.4rem 0; }
  .coming-soon { margin-top: 1.5rem; }
  .cta { margin-top: 1.4rem; padding: 0.7rem 1.6rem; }
}

/* ── Keyframes ───────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
