/*
 * seasonal.css
 * Phoenix Family — Shared styles for all seasonal landing pages
 * Link this from every seasonal page HTML file.
 *
 * LANDING MODE:
 *   When the URL contains ?mode=landing, JavaScript adds
 *   the class "landing-mode" to <body>. Rules prefixed with
 *   body.landing-mode override the default site-page styles.
 */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* --- Reds — kept in sync with --pf-red in pf-shell.css ── */
  --phoenix-red:       #bb1654;   /* = --pf-red         */
  --phoenix-red-dark:  #8f1040;
  --phoenix-red-light: #F6D7E1;   /* = --pf-red-light   */

  /* --- Neutrals — kept in sync with pf-shell.css --------- */
  --warm-white:        #ffffff;   /* = --pf-bg          */
  --cream:             #f6f6f6;   /* = --pf-soft        */
  --charcoal:          #333333;   /* = --pf-dark        */
  --mid-gray:          #333333;   /* = --pf-text        */
  --light-gray:        #e5e5e5;   /* = --pf-border      */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* --- SITE HEADER (default: visible) ----------------------- */

.pf-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(187,22,84,0.1);
  transition: box-shadow 0.3s;
}
.pf-site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.pf-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
}

.pf-site-header__brand img { height: 44px; width: auto; display: block; }

/* --- LANDING MODE: hide nav + hamburger, keep logo + CTA -------- */
body.landing-mode .pf-site-header__nav-wrap { display: none; }
body.landing-mode .pf-site-header__toggle   { display: none; }


/* --- SITE FOOTER (default: full) ----------------------- */
.site-footer {
  background: var(--charcoal);
  padding: 64px 48px 40px;
}
.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .footer-brand img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(10);
  opacity: 0.9;
}
.site-footer .footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.site-footer .footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.site-footer .footer-col a,
.site-footer .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 300;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: #fff; }
.site-footer .footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* Minimal footer (landing mode) — hidden by default */
.landing-footer {
  display: none;
  background: var(--charcoal);
  padding: 32px 48px;
  text-align: center;
}
.landing-footer img {
  height: 28px;
  filter: brightness(10);
  opacity: 0.7;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.landing-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.landing-footer a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  margin: 0 8px;
  transition: color 0.2s;
}
.landing-footer a:hover { color: rgba(255,255,255,0.7); }

/* --- LANDING MODE: swap footers ----------------------- */
body.landing-mode .site-footer  { display: none; }
body.landing-mode .landing-footer { display: block; }

/* --- LANDING MODE: urgency banner ----------------------- */
/* * .urgency-bar is hidden by default. In landing mode it appears beneath the nav as a slim colored strip with a deadline or short message.*/
.urgency-bar {
  display: none;
  background: var(--phoenix-red);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  position: fixed;
  top: 80px; /* sits just below the pf-site-header */
  left: 0; right: 0;
  z-index: 99;
}
.urgency-bar a { color: #fff; text-decoration: underline; }

body.landing-mode .urgency-bar { display: block; }

/* When urgency bar is visible, push page content down an extra 40px */
body.landing-mode .page-content { padding-top: calc(80px + 40px); }


/* --- SHARED CONTENT STYLES ----------------------- */

/* Nav spacer — accounts for fixed pf-site-header height */
.page-content { padding-top: 80px; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--phoenix-red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,32,47,0.28);
}
.btn-primary:hover {
  background: var(--phoenix-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,32,47,0.36);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1.5px solid var(--light-gray);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--charcoal); transform: translateY(-2px); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--phoenix-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  margin: 6px 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.5);
  margin: 6px 8px;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline-white:hover { border-color: #fff; transform: translateY(-2px); }

/* Typography helpers */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phoenix-red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before,
.section-eyebrow.centered::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--phoenix-red);
  opacity: 0.4;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE ----------------------- */
@media (max-width: 900px) {
  .pf-site-header__inner { padding: 0 20px; height: 64px; }

  /* On mobile the site's own JS handles the toggle — we just
     make sure landing mode still hides the nav wrap correctly */
  body.landing-mode .pf-site-header__nav-wrap { display: none !important; }
  body.landing-mode .pf-site-header__toggle   { display: none !important; }

  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-footer { padding: 48px 24px 32px; }

  .urgency-bar { top: 64px; font-size: 0.75rem; }
  .page-content { padding-top: 64px; }
  body.landing-mode .page-content { padding-top: calc(64px + 36px); }
}
/* ---- EARLY SIGNUP NOTICE ---- */
.form-notice-card {
  background: #F6D7E1;
  border-radius: 6px;
  max-width: 780px;
  margin: 32px auto 0;
  padding: 40px 48px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.form-notice-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.form-notice-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #bb1654;
  margin-bottom: 10px;
  line-height: 1.2;
}
.form-notice-card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
  font-weight: 400;
}
@media (max-width: 900px) {
  .form-notice-card { padding: 28px 24px; gap: 16px; margin: 20px 16px 0; }
  .form-notice-card-icon { font-size: 1.6rem; }
}