/*
 * worldcup.css
 * Page-specific styles for the FIFA World Cup 2026 Business Promotions page.
 * Loaded AFTER mv-main.css and btns.css.
 *
 * Structure modeled on /alert-moval/css/alert-mock.css for layout consistency,
 * with a soccer-themed palette (pitch green, gold/trophy yellow, red card, navy).
 */

/* ==========================================================================
   WORLD CUP TOKENS — soccer-themed palette
   ========================================================================== */
:root {
  --wc-pitch:         #1B7B3A;            /* primary pitch green */
  --wc-pitch-deep:    #0D5C28;            /* darker pitch green */
  --wc-pitch-light:   #E5F3EA;            /* tint for backgrounds */
  --wc-gold:          #F4C430;            /* trophy / yellow card */
  --wc-gold-deep:     #B58A12;            /* AA-safe gold for text on white */
  --wc-red:           #C8102E;            /* red card / accent */
  --wc-red-deep:      #8A0B1F;
  --wc-navy:          #0E1B3D;            /* deep navy for contrast */
  --wc-navy-dark:     #060D24;
  --wc-charcoal:      #1A1D24;
  --wc-surface:       #F5F7FA;
  --wc-text-muted:    #4D515F;

  /* Layout */
  --wc-section-pad:   5rem 0;
  --wc-card-radius:   12px;

  /* Shadows */
  --wc-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --wc-shadow-md: 0 6px 20px rgba(0,0,0,0.13);
  --wc-shadow-lg: 0 12px 36px rgba(0,0,0,0.17);

  /* Transitions */
  --wc-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;

  --on-dark-strong: rgba(255,255,255,0.96);
  --on-dark-soft:   rgba(255,255,255,0.86);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*background-color: var(--wc-pitch); */
	background-image: url("../World-Cup-Business-Banner-5.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
	background-color: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 1.5rem 4.5rem;
  text-align: center;
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,196,48,0.18);
  color: var(--wc-gold);
  border: 1px solid rgba(244,196,48,0.4);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-eyebrow i { color: var(--wc-gold); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6.2vw, 4.8rem);
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--wc-gold);
  letter-spacing: 0.02em;
}

.hero-lede {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 760px;
  color: var(--on-dark-strong);
}

.hero-cta-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero animations */
.anim { opacity: 0; transform: translateY(20px); animation: wc-rise 0.6s ease-out forwards; }
.anim-d1 { animation-delay: 0.05s; }
.anim-d2 { animation-delay: 0.20s; }
.anim-d3 { animation-delay: 0.35s; }
@keyframes wc-rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; animation: none; }
}

/* ==========================================================================
   BUTTONS (page-local variants)
   ========================================================================== */
.btn--gold {
  background: var(--wc-gold);
  color: var(--wc-navy);
  border: none;
}

.btn--black {
	background-color: #000;
	color: #fff;
}

.btn--gold:hover, .btn--gold:focus {
  background: #fcd34d;
  color: var(--wc-navy-dark);
}
.btn--pitch {
  background: var(--wc-pitch);
  color: #fff;
  border: none;
}
.btn--pitch:hover, .btn--pitch:focus {
  background: var(--wc-pitch-deep);
  color: #fff;
}
.btn--white-border {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
}
.btn--white-border:hover, .btn--white-border:focus {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.btn--m {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all var(--wc-transition);
}
.btn--s {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all var(--wc-transition);
}

/* ==========================================================================
   COUNTDOWN / STAT BAR
   ========================================================================== */
.stat-bar {
  background: var(--wc-navy);
  color: #fff;
  padding: 36px 0;
  border-bottom: 4px solid var(--wc-gold);
}
.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--wc-gold);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-dark-soft);
}

/* ==========================================================================
   STICKY SUB-NAV
   ========================================================================== */
.subnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--wc-pitch);
  box-shadow: var(--wc-shadow-sm);
}
.subnav .container { display: flex; align-items: center; justify-content: center; }
.subnav-toggle {
  display: none;
  background: none;
  border: none;
  font-weight: 700;
  padding: 16px;
  font-size: 1.5rem;
  color: var(--wc-pitch-deep);
}
.subnav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
  color: var(--wc-charcoal);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.5rem;
  border-bottom: 3px solid transparent;
  transition: all var(--wc-transition);
}
.subnav-link:hover, .subnav-link:focus {
  color: var(--wc-pitch-deep);
  border-bottom-color: var(--wc-gold);
}
.subnav-link i { color: var(--wc-pitch); }

@media (max-width: 700px) {
  .subnav-toggle { display: inline-flex; align-items: center; }
  .subnav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }
  .subnav-list.is-open { display: flex; }
  .subnav-link { padding: 12px 16px; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: var(--wc-section-pad); }
.section.bk-pitch-light { background: var(--wc-pitch-deep); }
.section.bk-navy { background: var(--wc-navy); color: #fff; }

.section.bk-navy .section-title,
.section.bk-navy .section-eyebrow,
.section.bk-navy p { color: var(--on-dark-strong); }
.section.bk-navy .section-eyebrow { color: var(--wc-gold); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wc-pitch);
  margin-bottom: 12px;
}
.residents {
	color: var(--wc-gold);
}

.business {
	color: #000 !important;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.section-lede {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  max-width: 780px;
  margin: 0 auto 36px;
}
.largish {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--wc-text-muted);
}

/* ==========================================================================
   CATEGORY CARDS (For Residents directory section)
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.category-card {
  background: #fff;
  border-radius: var(--wc-card-radius);
  box-shadow: var(--wc-shadow-md);
  padding: 36px 28px 32px;
  text-align: center;
  border-top: 5px solid var(--wc-gold);
  display: flex;
  flex-direction: column;
  transition: transform var(--wc-transition), box-shadow var(--wc-transition);
  position: relative;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wc-shadow-lg);
}

.category-card .category-icon {
  width: 88px; height: 88px;
  margin: 0 auto 20px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--wc-navy);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.category-card p {
  color: var(--wc-text-muted);
  font-size: 1.1rem;
  margin: 0 0 24px;
  flex: 1;
  line-height: 1.6;
}
.category-card .btn {
  align-self: center;
  color: white;
}

/* Placeholder pill for category cards while PDFs are not yet linked */
.coming-soon-pill {
  display: inline-block;
  background: var(--wc-gold);
  color: #000;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 10px;
}

/* ==========================================================================
   ELIGIBILITY + SIGNUP SECTION
   ========================================================================== */
.signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .signup-row { grid-template-columns: 1fr; }
}
.eligibility-card {
  background: #fff;
  border-radius: var(--wc-card-radius);
  box-shadow: var(--wc-shadow-md);
  padding: 40px;
  border-left: 6px solid var(--wc-pitch);
}
.eligibility-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--wc-navy);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.eligibility-card p {
  color: var(--wc-text-muted);
  font-size: 1.1rem;
  margin: 0 0 20px;
  line-height: 1.65;
}
.eligibility-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #DDE2E8;
  color: var(--wc-charcoal);
  font-size: 1.1rem;
  line-height: 1.55;
}
.eligibility-list li:last-child { border-bottom: none; }
.eligibility-list .check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--wc-pitch);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

.signup-card {
  background: #fff;
  border-radius: var(--wc-card-radius);
  box-shadow: var(--wc-shadow-md);
  padding: 0;
  border-top: 5px solid var(--wc-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.signup-card-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid #EEF1F4;
}
.signup-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--wc-navy);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.signup-card-head p {
  color: var(--wc-text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}
.jotform-frame {
  border: none;
  width: 100%;
  min-height: 780px;
  display: block;
  background: #fff;
}

/* ==========================================================================
   CONTACT / FOOTER CTA
   ========================================================================== */
.contact-banner {
  background-color: var(--wc-pitch-deep);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
  border-bottom: 4px solid #F4C430;
}

.contact-banner > * { position: relative; z-index: 1; }
.contact-banner h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.contact-banner p {
  color: var(--on-dark-strong);
  font-size: 1.2rem;
  margin: 0 0 28px;
  line-height: 1.55;
}
.contact-cta-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
