/* ---------------------------------------------
   Pangea Borderless Tourism — Coming Soon
   Night-flight theme
--------------------------------------------- */
:root {
  --night:      #06130B;
  --night-soft: #0C2415;
  --cream:      #F7F2E4;
  --cream-dim:  rgba(247, 242, 228, 0.68);
  --gold:       #F0B429;
  --gold-deep:  #E8A716;
  --green:      #2E7D32;
  --green-glow: #4CAF50;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse 120% 55% at 50% 108%, rgba(46, 125, 50, 0.22), transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% -12%, rgba(240, 180, 41, 0.06), transparent 55%),
    var(--night);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(240, 180, 41, 0.35);
  color: var(--cream);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

a { color: inherit; }

/* ---------------------------------------------
   Night sky layers
--------------------------------------------- */
#globe {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: fixed;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.aurora--gold {
  top: -18vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.16), transparent 65%);
  animation: drift-gold 46s ease-in-out infinite alternate;
}

.aurora--green {
  top: -10vw;
  left: -15vw;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.14), transparent 65%);
  animation: drift-green 58s ease-in-out infinite alternate;
}

@keyframes drift-gold {
  to { transform: translate(-14vw, 12vh) scale(1.18); }
}

@keyframes drift-green {
  to { transform: translate(12vw, 15vh) scale(0.88); }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------------------------------------------
   Top bar
--------------------------------------------- */
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1.25rem, 5vw, 3.5rem);
}

.bar__place {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
}

.bar__social {
  display: flex;
  gap: 1.1rem;
}

.bar__social a {
  display: inline-flex;
  color: var(--cream-dim);
  transition: color 0.2s ease, transform 0.2s ease;
}

.bar__social a:hover,
.bar__social a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

/* ---------------------------------------------
   Hero
--------------------------------------------- */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(0.5rem, 2.5vw, 1.5rem) clamp(1.25rem, 6vw, 2rem) clamp(4rem, 12vh, 7rem);
  max-width: 46rem;
  margin: 0 auto;
}

/* Warm dawn halo behind the logo so the dark wordmark reads on night sky */
.halo {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(320px, 46vw, 520px);
  height: clamp(320px, 46vw, 520px);
  background: radial-gradient(circle, rgba(247, 242, 228, 0.17), rgba(240, 180, 41, 0.07) 45%, transparent 68%);
  pointer-events: none;
}

.logo {
  width: clamp(200px, 28vw, 280px);
  height: auto;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  filter: brightness(1.16) drop-shadow(0 0 28px rgba(240, 180, 41, 0.30));
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  animation:
    logo-in 0.7s 0.15s cubic-bezier(.4,0,.2,1) forwards,
    float 4.6s 0.85s ease-in-out infinite;
}

@keyframes logo-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  animation: eyebrow-glow 2.6s ease-in-out infinite alternate;
}

@keyframes eyebrow-glow {
  from { text-shadow: 0 0 10px rgba(240, 180, 41, 0.25); }
  to   { text-shadow: 0 0 24px rgba(240, 180, 41, 0.65); }
}

.headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 32rem;
  margin: 0 auto 1.4rem;
}

.headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  text-shadow: 0 0 26px rgba(240, 180, 41, 0.4);
}

.lede {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--cream-dim);
  max-width: 34rem;
  margin: 0 0 2.4rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(180deg, #F6C453, var(--gold-deep));
  color: #08170D;
  font-weight: 700;
  box-shadow: 0 10px 34px rgba(240, 180, 41, 0.32);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(240, 180, 41, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 242, 228, 0.35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240, 180, 41, 0.08);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------------------------------------------
   Footer — gradient shield keeps it readable over the globe
--------------------------------------------- */
.foot {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem clamp(2rem, 5vw, 2.75rem);
  background: linear-gradient(180deg, rgba(6, 19, 11, 0) 0%, rgba(6, 19, 11, 0.88) 55%);
}

.foot__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 0 0.6rem;
}

.foot__tagline span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(240, 180, 41, 0.55);
}

.foot__meta {
  font-size: 0.72rem;
  color: var(--cream-dim);
  opacity: 0.7;
  margin: 0;
}

/* ---------------------------------------------
   Motion & small screens
--------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .aurora { animation: none; }
  .logo { animation: none; opacity: 1; transform: none; }
  .eyebrow { animation: none; text-shadow: 0 0 14px rgba(240, 180, 41, 0.4); }
}

@media (max-width: 420px) {
  .cta { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
}
