/*
Theme Name: NNO Galt Futuristic
Theme URI: https://nnogalt.org
Author: NNO Galt
Description: A futuristic patriotic dark-blue WordPress theme for National Night Out Galt.
Version: 1.3
License: GNU General Public License v2 or later
Text Domain: nno-galt-futuristic
*/

:root {
  --nno-bg: #020817;
  --nno-dark: #010511;
  --nno-navy: #061A40;
  --nno-blue: #0077ff;
  --nno-blue-dark: #003b9a;
  --nno-red: #ff0033;
  --nno-red-dark: #b80024;
  --nno-white: #ffffff;
  --nno-text: #dbeafe;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--nno-bg);
  color: var(--nno-text);
}

a { color: inherit; }

.site-header {
  background: rgba(1, 5, 17, .94);
  border-bottom: 1px solid rgba(255,255,255,.14);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1150px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}

.site-title {
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(0,119,255,.75);
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #dbeafe !important;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0,119,255,.45);
}

.nno-page, .nno-donate-page {
  background: var(--nno-bg);
  color: #ffffff !important;
  overflow: hidden;
}

.nno-page h1, .nno-page h2, .nno-page h3, .nno-page strong,
.nno-donate-page h1, .nno-donate-page h2, .nno-donate-page h3, .nno-donate-page strong {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255,255,255,.65), 0 0 22px rgba(0,119,255,.85);
}

.nno-page p, .nno-page div,
.nno-donate-page p, .nno-donate-page div, .nno-donate-page li {
  color: #dbeafe !important;
  text-shadow: 0 0 8px rgba(0,119,255,.45);
}

.nno-hero, .nno-donate-hero {
  background: radial-gradient(circle at top, rgba(0,119,255,.42), transparent 38%), linear-gradient(rgba(2,8,23,.88), rgba(2,8,23,.96));
  text-align: center;
  padding: 110px 20px;
}

.nno-hero.has-bg {
  background: radial-gradient(circle at top, rgba(0,119,255,.42), transparent 38%), linear-gradient(rgba(2,8,23,.88), rgba(2,8,23,.96)), var(--hero-image) center/cover no-repeat;
}

.nno-donate-hero {
  background: radial-gradient(circle at top, rgba(255,0,51,.30), transparent 35%), radial-gradient(circle at bottom, rgba(0,119,255,.35), transparent 40%), linear-gradient(rgba(2,8,23,.92), rgba(2,8,23,.97));
}

.nno-hero h1, .nno-donate-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  margin: 0 0 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nno-hero h2 {
  font-size: clamp(21px, 3vw, 26px);
  margin-bottom: 20px;
}

.nno-hero p, .nno-donate-hero p {
  max-width: 850px;
  margin: 0 auto 35px;
  font-size: 20px;
  line-height: 1.6;
}

.nno-lightbar {
  margin: 20px auto 25px;
  width: 240px;
  height: 4px;
  background: linear-gradient(to right, var(--nno-red), #ffffff, var(--nno-blue));
  box-shadow: 0 0 22px var(--nno-blue);
  border-radius: 999px;
}

.nno-buttons { text-align: center; }

.nno-buttons a, .nno-button {
  display: inline-block;
  margin: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255,255,255,.5);
}

.btn-red { background: linear-gradient(135deg, var(--nno-red), var(--nno-red-dark)); box-shadow: 0 0 20px rgba(255,0,51,.6); }
.btn-blue { background: linear-gradient(135deg, var(--nno-blue), var(--nno-blue-dark)); box-shadow: 0 0 20px rgba(0,119,255,.6); }

.nno-section, .nno-donate-section {
  max-width: 1150px;
  margin: auto;
  padding: 75px 20px;
}

.nno-section h2, .nno-location-section h2, .nno-callout h2, .nno-donate-card h2, .nno-contact-box h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 20px;
}

.nno-section p, .nno-donate-card p { font-size: 18px; line-height: 1.7; }

.nno-cards, .nno-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 35px;
}

.nno-card, .nno-donate-card, .nno-info-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(0,119,255,.35);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 28px rgba(0,119,255,.18), inset 0 0 10px rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nno-card h3, .nno-info-box h3 { margin-top: 0; font-size: 24px; }
.nno-card p { font-weight: 600; }

.nno-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 35px;
}

.nno-stat {
  background: linear-gradient(180deg, rgba(0,119,255,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 0 24px rgba(0,119,255,.18);
}

.nno-stat strong {
  display: block;
  font-size: 36px;
  color: var(--nno-red) !important;
  text-shadow: 0 0 16px rgba(255,0,51,.75);
}

.nno-location-section {
  background: radial-gradient(circle at center, rgba(255,0,51,.18), transparent 40%), var(--nno-bg);
  max-width: none;
  padding: 80px 20px;
}

.nno-inner { max-width: 1150px; margin: auto; }
.nno-location-section p { text-align: center; }

.nno-callout, .nno-contact-box {
  background: radial-gradient(circle at center, rgba(255,0,51,.25), transparent 40%), linear-gradient(135deg, var(--nno-navy), var(--nno-blue-dark));
  text-align: center;
  padding: 80px 20px;
}

.nno-contact-box { border-radius: 22px; margin-top: 40px; padding: 38px; border: 1px solid rgba(255,255,255,.18); }
.nno-contact-box a { color: #fff !important; font-weight: 900; text-decoration: none; }

.nno-footer, .site-footer {
  background: var(--nno-dark);
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.content-page {
  max-width: 1000px;
  margin: auto;
  padding: 70px 20px;
  color: #dbeafe;
}

@media (max-width: 760px) {
  .header-inner { flex-direction: column; }
  .main-nav ul { justify-content: center; }
  .nno-hero, .nno-donate-hero { padding: 80px 20px; }
}

/* Header logo row */
.nno-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.nno-side-logo { max-width: 170px; width: 22%; min-width: 110px; height: auto; filter: drop-shadow(0 0 18px rgba(0,119,255,.7)); }
.nno-main-logo { max-width: 500px; width: 50%; min-width: 250px; height: auto; filter: drop-shadow(0 0 20px rgba(255,255,255,.35)) drop-shadow(0 0 30px rgba(0,119,255,.55)); }

/* Sponsors */
.nno-sponsors-strip {
  padding: 70px 20px;
  background: radial-gradient(circle at top, rgba(0,119,255,.18), transparent 35%), #010511;
  border-top: 1px solid rgba(255,255,255,.12);
}
.nno-sponsors-strip h2,
.nno-sponsor-main-section h2,
.supporting-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 15px;
  color: #fff !important;
  text-shadow: 0 0 10px rgba(255,255,255,.65), 0 0 22px rgba(0,119,255,.85);
}
.nno-sponsors-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
  font-size: 18px;
}
.nno-title-sponsor-card {
  max-width: 850px;
  margin: 0 auto 36px;
  text-align: center;
  background: radial-gradient(circle at top, rgba(255,215,0,.16), transparent 45%), rgba(255,255,255,.08);
  padding: 36px;
  border-radius: 24px;
  border: 2px solid rgba(255,215,0,.95);
  box-shadow: 0 0 34px rgba(255,215,0,.28), inset 0 0 14px rgba(255,255,255,.06);
}
.nno-title-sponsor-card.huge { padding: 50px 30px; max-width: 950px; }
.sponsor-label {
  font-size: 14px;
  letter-spacing: 3px;
  color: #ffd700 !important;
  margin-bottom: 18px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255,215,0,.55) !important;
}
.sponsor-logo {
  max-width: 260px;
  max-height: 150px;
  width: 90%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 0 20px rgba(0,119,255,.22);
}
.sponsor-logo-title { max-width: 520px; max-height: 240px; }
.nno-title-sponsor-card h2,
.nno-title-sponsor-card h3 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 8px 0 0;
}
.nno-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}
.nno-sponsor-grid.large { margin-top: 25px; }
.nno-sponsor-card {
  min-height: 220px;
  background: rgba(255,255,255,.07);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0,119,255,.35);
  box-shadow: 0 0 26px rgba(0,119,255,.18), inset 0 0 10px rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nno-sponsor-card h3 { margin: 0; font-size: 30px; }
.sponsor-text-only h3 { font-size: clamp(34px, 5vw, 48px); color: #fff !important; }
.sponsor-buttons { margin-top: 35px; }
.nno-sponsor-main-section { padding: 75px 20px; }
.supporting-title { margin-top: 45px !important; }

@media (max-width: 760px) {
  .nno-logo-row { gap: 18px; }
  .nno-side-logo { width: 34%; max-width: 130px; }
  .nno-main-logo { width: 88%; order: -1; }
  .nno-title-sponsor-card { padding: 28px 18px; }
}

/* Sponsor logo tuning */
.nno-title-sponsor-card .sponsor-logo-title {
  max-width: 620px;
  max-height: 280px;
}
.nno-sponsor-card .sponsor-logo {
  width: 100%;
  max-width: 420px;
  height: 180px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 14px;
}
.nno-title-sponsor-card.huge .sponsor-logo-title {
  width: 100%;
  max-width: 720px;
  height: auto;
  background: rgba(255,255,255,.95);
  border-radius: 18px;
  padding: 16px;
}
