@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* =========================
   GLOBAL
========================= */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  text-align: center;

  background:
    radial-gradient(circle at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 60px),
    linear-gradient(135deg, #1E5561 0%, #0E3A45 45%, #0B2A33 100%);
}

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  margin: 0;
}

/* =========================
   HERO
========================= */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 1rem 2rem;
  margin-top: -30px;
}

/* =========================
   NAV
========================= */
nav {
  padding: 0.2rem 0 0 0;
  display: flex;
  justify-content: center;
}

.nav-logo {
  height: 240px;
  margin-top: -20px; 
  width: auto;

  image-rendering: -webkit-optimize-contrast;

  filter:
    /* bottom-heavy white glow */
    drop-shadow(0 18px 28px rgba(255,255,255,0.55))
    drop-shadow(0 30px 45px rgba(255,255,255,0.35))

    /* subtle depth */
    drop-shadow(0 8px 18px rgba(0,0,0,0.55))

    contrast(1.06)
    saturate(1.05);
}

/* =========================
   MASCOT
========================= */
.mascot-wrapper {
  position: relative;
  margin-top: -10px;
  z-index: 3;
}

.mascot-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(244,162,97,1) 0%,
    rgba(244,162,97,0.6) 35%,
    rgba(244,162,97,0.25) 60%,
    transparent 80%
  );
  filter: blur(35px);
  z-index: 0;
}

.mascot {
  position: relative;
  z-index: 1;
  max-width: 150px;
}

/* =========================
   CONTENT FRAME (OVERLAPS MASCOT)
========================= */
.content-frame {
  margin-top: -40px; 
  position: relative;
  max-width: 760px;
  padding: 2.2rem 2.2rem 1.8rem 2.2rem;
  border-radius: 28px;

  /* layered background */
  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.95) 40%,
      rgba(255,255,255,0.85) 70%,
      rgba(255,255,255,0.75) 100%
    );

  color: #0E2F36;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.45);

  backdrop-filter: blur(10px);
  z-index: 2;
}

/* =========================
   TYPOGRAPHY (TIGHTER)
========================= */
.content-frame h1 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.summary {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.8rem;
}

.status {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* =========================
   BUTTON
========================= */
.button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(145deg, #f4a261, #e98d4a);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.5);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  margin-top: -10px;  /* pulls footer up */
  padding-bottom: 1.2rem;
  opacity: 0.75;
  font-size: 0.8rem;
}


.footer-brand {
  margin-top: 0.5rem;
}

.footer-brand img {
  height: 120px;
  width: auto;

  filter:
    drop-shadow(0 0 14px rgba(255,255,255,0.40))
    drop-shadow(0 0 28px rgba(255,255,255,0.20))
    drop-shadow(0 6px 12px rgba(0,0,0,0.55))

    contrast(1.05)
    saturate(1.05);
}
