/* ═══════════════════════════════════════════════════════════════
   POOCH PANTRY — Coming Soon Landing Page
   Palette: Navy #1C1C2E · Blue #3A86FF · Cream #FFF5E6
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:        #1C1C2E;
  --navy-light:  #2E2E48;
  --blue:        #3A86FF;
  --blue-light:  #60A5FA;
  --blue-dark:   #1A5CB8;
  --gold:        #F0C050;
  --cream:       #FFF5E6;
  --cream-dark:  #F5EBD8;
  --white:       #FFFFFF;

  --shadow-lg:   0 8px 40px rgba(0,0,0,.28);
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --border:      2.5px solid var(--navy);

  --font-head: 'Nunito', 'Comic Sans MS', cursive, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --transition: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ─── Ambient background glow ─────────────────────────────────── */
.glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.glow-a {
  width: 560px; height: 560px;
  top: -180px; left: -140px;
  background: radial-gradient(circle, rgba(58,134,255,.28) 0%, transparent 70%);
}
.glow-b {
  width: 480px; height: 480px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(240,192,80,.14) 0%, transparent 70%);
}

/* ─── Background paw drift ────────────────────────────────────── */
.paw-drift {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.paw-drift-el {
  position: absolute;
  opacity: .1;
  animation: floatRandom 9s ease-in-out infinite;
  filter: brightness(0) invert(1);
}
@keyframes floatRandom {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-16px) rotate(8deg); }
  66%      { transform: translateY(-6px) rotate(-6deg); }
}

/* ─── Layout ───────────────────────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 56px;
}

.logo {
  width: 130px;
  height: 130px;
  margin-bottom: 24px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,134,255,.15);
  border: 1.5px solid rgba(58,134,255,.4);
  color: var(--blue-light);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.15;
  font-size: clamp(2.3rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 26px;
}
.title .highlight {
  background: linear-gradient(100deg, var(--blue-light), var(--blue) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 560px;
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  line-height: 1.75;
}
.lede strong { color: var(--white); }

/* ─── Map section ──────────────────────────────────────────────── */
.map-section {
  padding: 0 0 70px;
}
.map-frame {
  border-radius: var(--radius-xl);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--cream-dark);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(1.05);
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 24px 0 40px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.paw-inline {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  filter: invert(45%) sepia(80%) saturate(800%) hue-rotate(180deg) brightness(105%);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero { padding: 64px 0 40px; }
  .logo { width: 96px; height: 96px; }
  .map-frame { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
  .paw-drift-el { display: none; }
  .glow { display: none; }
}

@media (max-width: 400px) {
  .title { font-size: 1.9rem; }
  .lede { font-size: .98rem; }
}
