/*
Theme Name: Dakota OutRight
Author: Dakota OutRight
Description: v2 June 2026. Community-forward light design. All 15 pages.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: dakota-outright
*/

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --pink:      #e8197d;
  --violet:    #7c3aed;
  --gold:      #f0a500;
  --green:     #22c55e;
  --sky:       #38bdf8;
  --night:     #08081a;
  --ink:       #1a1a2e;
  --body:      #3d3d5c;
  --muted:     #7070a0;
  --rule:      #e8e4f4;
  --bg:        #ffffff;
  --bg-soft:   #faf9ff;
  --bg-card:   #ffffff;
  --shadow:    0 2px 12px rgba(8,8,26,.08);
  --shadow-md: 0 8px 32px rgba(8,8,26,.12);
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--night);
  line-height: 1.15;
}

/* ── PROGRESS PRIDE BAR ────────────────────────── */
.pride-bar {
  height: 5px;
  background: linear-gradient(90deg,
    #E40303 0% 9%, #FF8C00 9% 18%, #FFED00 18% 27%,
    #008026 27% 36%, #004DFF 36% 45%, #750787 45% 54%,
    #613915 54% 63%, #000 63% 72%,
    #55CDFC 72% 81%, #F7A8B8 81% 90%, #fff 90% 100%
  );
  position: sticky;
  top: 0;
  z-index: 10000;
}

/* ── NAVIGATION ────────────────────────────────── */
.site-nav {
  background: white;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 1px 12px rgba(8,8,26,.06);
  pointer-events: all;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 9999;
}
.nav-links > li > a:hover,
.nav-links > li.active > a {
  background: #faf9ff;
  color: var(--pink);
  text-decoration: none;
}
/* Dropdown */
.nav-links li.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px;
  z-index: 10000;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.dropdown a:hover { background: #faf9ff; color: var(--pink); text-decoration: none; }
.dd-icon { font-size: 15px; flex-shrink: 0; }

/* Nav CTA */
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-nav-donate {
  background: var(--violet);
  color: white !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.btn-nav-donate:hover { opacity: .9; transform: translateY(-1px); text-decoration: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  border: none;
}
.btn-primary   { background: var(--pink);   color: white; }
.btn-secondary { background: var(--violet); color: white; }
.btn-outline   { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-gold      { background: var(--gold);   color: white; }
.btn-light     { background: #faf9ff; color: var(--ink); border: 1.5px solid var(--rule); }

.btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }

/* ── SECTION PRIMITIVES ────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 32px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--night);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--body);
  max-width: 560px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── CARDS ─────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(2,1fr); }
.card-grid-3 { grid-template-columns: repeat(3,1fr); }
.card-grid-4 { grid-template-columns: repeat(4,1fr); }

/* ── BADGE / PILL ──────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}
.badge-pink   { background: rgba(232,25,125,.1);  color: var(--pink);   border: 1px solid rgba(232,25,125,.25); }
.badge-violet { background: rgba(124,58,237,.1);  color: var(--violet); border: 1px solid rgba(124,58,237,.25); }
.badge-gold   { background: rgba(240,165,0,.1);   color: #92400e;       border: 1px solid rgba(240,165,0,.3);  }
.badge-green  { background: rgba(34,197,94,.1);   color: #166534;       border: 1px solid rgba(34,197,94,.25); }

/* ── DIVIDER ───────────────────────────────────── */
.divider { height: 1px; background: var(--rule); margin: 0; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  background: #faf9ff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,25,125,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--night);
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--pink); }
.hero-body {
  font-size: 17px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right — logo card */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-card {
  position: relative;
  text-align: center;
  display: inline-block;
}
.hero-logo-card img { width: 200px; }
.hero-logo-card .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
}
.hero-founded {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-year {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
/* Floating accent cards */
.float-badge {
  position: absolute;
  background: white;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.float-badge.top-left  { top: -20px; left: -40px; }
.float-badge.bot-right { display: none; }

/* ── PRIDE SECTION (keeps event info) ─────────── */
.pride-section {
  background: var(--night);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.pride-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,25,125,.15) 0%, transparent 60%);
  pointer-events: none;
}
.pride-section-inner { position: relative; z-index: 1; }
.pride-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}
.pride-sub { font-size: 15px; color: rgba(240,238,255,.6); margin-bottom: 36px; }

/* Day cards */
.pride-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.pride-card {
  background: rgba(240,238,255,.06);
  border: 1px solid rgba(240,238,255,.1);
  border-radius: var(--radius);
  padding: 22px;
  transition: all .2s;
}
.pride-card:hover {
  background: rgba(240,238,255,.1);
  border-color: rgba(232,25,125,.3);
  transform: translateY(-2px);
}
.pride-card-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.pride-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.pride-card-meta {
  font-size: 13px;
  color: rgba(240,238,255,.5);
  margin-bottom: 12px;
}
.pride-card-items { list-style: none; }
.pride-card-items li {
  font-size: 12px;
  color: rgba(240,238,255,.7);
  padding: 3px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pride-card-items li::before { content: '·'; color: var(--pink); flex-shrink: 0; }

/* After party badge */
.after-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #f0a500;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.after-badge:hover { background: rgba(240,165,0,.2); text-decoration: none; }

/* ── PROGRAMS ──────────────────────────────────── */
.programs-section { background: var(--bg); padding: 80px 0; }
.program-card {
  background: var(--bg-card);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.program-card.pink::before   { background: var(--pink); }
.program-card.violet::before { background: var(--violet); }
.program-card.gold::before   { background: var(--gold); }
.program-card.green::before  { background: var(--green); }
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.program-ico  { font-size: 32px; margin-bottom: 14px; }
.program-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 8px;
}
.program-desc { font-size: 13px; color: var(--body); line-height: 1.65; margin-bottom: 14px; }
.program-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ── STATS BAND ────────────────────────────────── */
.stats-band {
  background: #faf9ff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── SPONSORS STRIP ────────────────────────────── */
.sponsors-section {
  background: white;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.sponsor-logo-card {
  background: #faf9ff;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all .2s;
}
.sponsor-logo-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.sponsor-logo-card img {
  max-width: 140px;
  max-height: 56px;
  object-fit: contain;
}
.sponsors-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 32px 0 28px;
}
.sponsor-name-fallback {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.sponsor-tier-badge {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 5px;
  text-align: center;
}
.tier-premier   { background: rgba(240,165,0,.15);  color: #92400e; border: 1px solid rgba(240,165,0,.3); }
.tier-community { background: rgba(56,189,248,.12); color: #0369a1; border: 1px solid rgba(56,189,248,.25); }
.tier-friend    { background: rgba(232,25,125,.08); color: var(--pink); border: 1px solid rgba(232,25,125,.2); }

/* ── NEWSLETTER ────────────────────────────────── */
.newsletter-section {
  background: #faf9ff;
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  background: white;
  color: var(--ink);
  transition: border-color .15s;
}
.newsletter-form input:focus { border-color: var(--pink); }
.newsletter-form input::placeholder { color: var(--muted); }

/* ── FOOTER ────────────────────────────────────── */
.site-footer {
  background: var(--night);
  color: rgba(240,238,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(240,238,255,.5); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(240,238,255,.08);
  border: 1px solid rgba(240,238,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(240,238,255,.6);
  transition: all .15s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--pink); border-color: var(--pink); color: white; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240,238,255,.35);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(240,238,255,.6);
  text-decoration: none;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(240,238,255,.08);
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(240,238,255,.3);
}

/* ── MOBILE ────────────────────────────────────── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-title { font-size: 42px; }
  .pride-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section-title { font-size: 30px; }
  .hero-title { font-size: 34px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .container { padding: 0 20px; }
}

/* Donate button override — violet to avoid conflict with ❤️ */
a.btn-nav-donate,
a[href="/donate"].btn {
  background: var(--violet) !important;
}
a[href="/donate"].btn:hover {
  background: #6d28d9 !important;
}
