﻿@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');

:root {
  --navy: #0a1f44;
  --red: #d0231a;
  --red-light: #ff6b62;
  --gold: #f5a623;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --light-gray: #e8e4dc;
  --mid-gray: #888;
  --text: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--off-white);
  font-size: 17px;
  line-height: 1.65;
}

/* -- NAV -- */
nav {
  background: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-logo {
  display: block;
  width: auto;
  height: 44px;
  border-radius: 4px;
  background: transparent;
  object-fit: contain;
}

.nav-brand-text {
  color: var(--navy);
}

.nav-brand-text > span {
  color: var(--red);
}

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

.nav-links a {
  color: rgba(10,31,68,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #b01e16 !important;
  color: var(--white) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* -- HERO -- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: 'NEBRASKA';
  position: absolute;
  right: 18px;
  top: -24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--red-light);
  font-style: normal;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 560px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #b01e16;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.section-alt .btn-outline,
.section[style*="background: var(--red)"] .btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.section-alt .btn-outline:hover,
.section[style*="background: var(--red)"] .btn-outline:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  transform: translateY(-1px);
}

/* -- STAT BAR -- */
.stat-bar {
  background: var(--red);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.78;
}

/* -- SECTIONS -- */
.section {
  padding: 80px 40px;
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.section p {
  color: #444;
  margin-bottom: 16px;
}

.section p:last-child {
  margin-bottom: 0;
}

/* -- ALTERNATING BG -- */
.section-alt {
  background: var(--navy);
  color: var(--white);
}

.section-alt .section-label {
  color: var(--red-light);
}

.section-alt h2 {
  color: var(--white);
}

.section-alt p {
  color: rgba(255,255,255,0.75);
}

/* -- CARDS -- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 4px solid var(--red);
}

.section-alt .card {
  background: rgba(255,255,255,0.07);
  border-top-color: var(--red-light);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-alt .card h3 {
  color: var(--red-light);
}

.card p {
  font-size: 0.92rem;
  margin: 0;
}

/* -- UPCOMING EVENTS -- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.event-card {
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--red);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-card.featured {
  border-left-color: var(--red);
}

.event-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.event-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.event-meta {
  display: grid;
  gap: 6px;
  color: #555;
  font-size: 0.9rem;
}

.event-meta strong {
  color: var(--navy);
}

.event-card p {
  color: #555;
  font-size: 0.92rem;
}

.event-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.event-note {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(208,35,26,0.12);
  border-left: 4px solid var(--red);
  color: var(--navy);
  font-size: 0.92rem;
}

/* -- THANK YOU PAGES -- */
.thank-you-hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 40px 70px;
}

.thank-you-inner {
  max-width: 760px;
  margin: 0 auto;
}

.thank-you-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.thank-you-hero p {
  max-width: 560px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
}

.next-step-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.next-step {
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--red);
  padding: 20px 22px;
}

.next-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--navy);
  letter-spacing: 0.04em;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

/* -- STORY -- */
.story-block {
  border-left: 4px solid var(--red-light);
  padding-left: 28px;
  margin: 32px 0;
}

.story-block p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 12px;
}

/* -- SCHEDULE TABLE -- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:nth-child(even) td {
  background: var(--off-white);
}

/* -- FORM EMBED -- */
.form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  margin-top: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-wrap iframe {
  width: 100%;
  border: none;
  border-radius: 4px;
  min-height: 680px;
}

/* -- SUPPORT PAGE -- */
.support-hero {
  background: var(--red);
  color: var(--white);
  padding: 80px 40px 60px;
  text-align: center;
}

.support-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.support-hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.9;
  font-weight: 300;
}

.donate-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.donate-btn:hover {
  background: #e09600;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tier-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  border-bottom: 4px solid var(--light-gray);
  transition: all 0.2s;
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tier-card.featured {
  border-bottom-color: var(--red);
  background: var(--navy);
  color: var(--white);
}

.tier-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}

.tier-card.featured .tier-amount {
  color: var(--red-light);
}

.tier-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
  display: block;
}

.tier-card.featured .tier-name {
  color: rgba(255,255,255,0.6);
}

.tier-desc {
  font-size: 0.88rem;
  color: #555;
  margin-top: 8px;
}

.tier-card.featured .tier-desc {
  color: rgba(255,255,255,0.7);
}

.givebutter-embed {
  max-width: 640px;
  margin: 40px auto 0;
}

/* -- SUPPORTER WALL -- */
.supporter-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.supporter-wall-item {
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--red);
  padding: 22px 20px;
}

.supporter-wall-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
}

.supporter-wall-item p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}

.supporter-note {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(208,35,26,0.08);
  border-radius: 8px;
  color: var(--navy);
}

/* -- FOOTER -- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px;
  font-size: 0.85rem;
}

footer a {
  color: var(--red-light);
  text-decoration: none;
}

footer strong {
  color: var(--white);
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255,107,98,0.45);
  border-radius: 4px;
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255,107,98,0.12);
  color: var(--white);
}

/* -- ABOUT PAGE -- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 60px;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 560px;
  opacity: 0.75;
  font-weight: 300;
}

/* -- RESPONSIVE -- */
@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  nav {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-brand {
    font-size: 1.35rem;
  }

  .nav-logo {
    height: 38px;
  }

  .nav-brand-text {
    display: none;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid rgba(10,31,68,0.12);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-cta {
    padding: 10px 0 !important;
    background: none !important;
    color: var(--red) !important;
    border: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero, .section, .page-hero, .support-hero, .thank-you-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero, .page-hero, .support-hero, .thank-you-hero {
    padding-top: 64px;
    padding-bottom: 52px;
  }

  .hero::before {
    font-size: 7rem;
    right: 12px;
    top: 6px;
  }

  .stat-bar {
    gap: 32px;
    padding: 20px;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn,
  .donate-btn {
    width: 100%;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .card-grid,
  .event-grid,
  .supporter-wall,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .event-card,
  .tier-card {
    padding: 24px 20px;
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-table th,
  .schedule-table td {
    white-space: nowrap;
    padding: 12px 14px;
  }

  .form-wrap iframe {
    min-height: 760px;
  }

  footer {
    padding: 32px 20px;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
