/* ===========================
   SLEEPY MOON — GLOBAL STYLES
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:    #1a1f3c;
  --indigo:  #2d3470;
  --purple:  #6b4fa0;
  --soft-purple: #9b7fd4;
  --gold:    #f0c040;
  --cream:   #fdf8f0;
  --white:   #ffffff;
  --text:    #2c2c3e;
  --text-muted: #6b6b80;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(26,31,60,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HEADER / NAV
   =========================== */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-moon { font-size: 1.6rem; }

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

/* ===========================
   HERO
   =========================== */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 55%, var(--purple) 100%);
  color: var(--white);
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-text { max-width: 560px; }

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }

.badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-soon {
  background: var(--gold);
  color: var(--navy);
}

.hero-art { flex-shrink: 0; }

.moon-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 0 80px rgba(240,192,64,0.25);
}

/* ===========================
   SECTIONS
   =========================== */

.section { padding: 80px 0; }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
}

/* ===========================
   FEATURES
   =========================== */

.features { background: var(--white); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,31,60,0.14);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ===========================
   ABOUT
   =========================== */

.about {
  background: linear-gradient(135deg, var(--indigo), var(--navy));
  color: var(--white);
}

.about-inner { max-width: 680px; }

.about h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
}

.about p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ===========================
   CONTACT
   =========================== */

.contact { background: var(--cream); text-align: center; }

.contact-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.contact-email {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  border-bottom: 2px solid var(--soft-purple);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ===========================
   LEGAL PAGE
   =========================== */

.legal-page { padding: 60px 0; }

.legal-container { max-width: 760px; }

.legal-container h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-date {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-container h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 10px;
}

.legal-container p,
.legal-container li {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 12px;
}

.legal-container ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-container a { color: var(--purple); }

address { font-style: normal; line-height: 1.9; }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 680px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .moon-circle { width: 160px; height: 160px; font-size: 72px; }
  .nav-links { gap: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .nav-links { display: none; }
}
