/* ===========================
   Memorial Weekend 2026
   Patriotic Color Palette CSS
   =========================== */

:root {
  /* Primary Colors */
  --patriot-red: #b22234;
  --navy-blue: #002868;
  --pure-white: #ffffff;
  --gold-accent: #d4af37;

  /* Supporting Colors */
  --dark-navy: #0a1128;
  --light-gray: #f5f5f5;
  --medium-gray: #666666;
  --light-blue: #e8f0f7;
  --gold-hover: #c9b037;

  /* Gradients */
  --patriotic-gradient: linear-gradient(135deg, #b22234 0%, #002868 100%);
  --gold-gradient: linear-gradient(90deg, #d4af37 0%, #c9b037 100%);
  --subtle-blue: linear-gradient(180deg, #002868 0%, #0a1128 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);

  /* Typography */
  --header-font: "Playfair Display", serif;
  --body-font: "Montserrat", sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===========================
   Accessibility
   =========================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy-blue);
  color: var(--pure-white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-accent);
  outline-offset: 2px;
}

/* ===========================
   Typography
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

/* ===========================
   Container & Layout
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--patriotic-gradient);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  min-width: 44px;
}

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

.btn-primary:hover {
  background: #9a1d2e;
  border-color: #9a1d2e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.btn-secondary:hover {
  background: var(--pure-white);
  color: var(--navy-blue);
}

.btn-outline {
  background: transparent;
  color: var(--navy-blue);
  border-color: var(--navy-blue);
}

.btn-outline:hover {
  background: var(--navy-blue);
  color: var(--pure-white);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--pure-white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 50px;
  width: auto;
}

.brand-text {
  font-family: var(--header-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-blue);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-blue);
  position: relative;
}

.nav-menu a:not(.btn-donate):hover {
  color: var(--patriot-red);
}

.nav-menu a:not(.btn-donate)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--patriot-red);
  transition: var(--transition);
}

.nav-menu a:not(.btn-donate):hover::after {
  width: 100%;
}

.btn-donate {
  background: var(--patriot-red);
  color: var(--pure-white);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-donate:hover {
  background: #9a1d2e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--navy-blue);
  transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--pure-white);
  text-align: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--dark-navy);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--pure-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light-blue);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-date,
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin: 0.5rem 1rem;
  color: var(--pure-white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.hero-contact a {
  color: var(--gold-accent);
  font-weight: 600;
}

.hero-contact a:hover {
  color: var(--pure-white);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--pure-white);
  border-radius: 15px;
  position: relative;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--pure-white);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%,
  20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

/* ===========================
   About Event Section
   =========================== */
.about-event {
  background: var(--pure-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 3rem;
  color: var(--patriot-red);
  margin-bottom: 1rem;
}

.highlight-item h3 {
  font-size: 1.25rem;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.stats-card {
  background: var(--subtle-blue);
  color: var(--pure-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-accent);
  font-family: var(--header-font);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--light-blue);
  text-align: center;
}

/* ===========================
   Event Schedule Section
   =========================== */
.event-schedule {
  background: var(--light-gray);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.schedule-tab {
  background: var(--pure-white);
  border: 2px solid var(--navy-blue);
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

.schedule-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.schedule-tab.active {
  background: var(--patriotic-gradient);
  color: var(--pure-white);
  border-color: transparent;
}

.tab-day {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
}

.tab-date {
  font-size: 0.9rem;
  opacity: 0.9;
}

.schedule-content {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-day {
  display: none;
}

.schedule-day.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--patriotic-gradient);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--gold-accent);
  border: 3px solid var(--pure-white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.timeline-time {
  font-weight: 700;
  color: var(--navy-blue);
  font-size: 1.1rem;
}

.timeline-content {
  background: var(--pure-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.timeline-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--navy-blue);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ===========================
   Mission Section
   =========================== */
.mission-section {
  background: var(--pure-white);
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-statement {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 5px solid var(--gold-accent);
}

.mission-icon {
  font-size: 4rem;
  color: var(--patriot-red);
  margin-bottom: 1rem;
}

.history-content {
  margin-bottom: 4rem;
}

.history-content h3 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--light-blue);
}

.value-item i {
  font-size: 3rem;
  color: var(--patriot-red);
  margin-bottom: 1rem;
}

.value-item h4 {
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* ===========================
   Gallery Section
   =========================== */
.gallery-section {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--pure-white);
  color: var(--navy-blue);
  border: 2px dashed var(--medium-gray);
}

.gallery-placeholder i {
  font-size: 3rem;
  color: var(--patriot-red);
  margin-bottom: 1rem;
}

.gallery-note {
  text-align: center;
  padding: 2rem;
  background: var(--pure-white);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.gallery-note i {
  color: var(--gold-accent);
  margin-right: 0.5rem;
}

.gallery-note a {
  color: var(--patriot-red);
  font-weight: 600;
}

.gallery-cta {
  text-align: center;
}

/* ===========================
   Sponsors Section
   =========================== */
.sponsors-section {
  background: var(--pure-white);
}

.sponsors-tiers {
  margin-bottom: 4rem;
}

.sponsor-tier {
  margin-bottom: 3rem;
}

.tier-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid;
}

.tier-title.gold {
  color: var(--gold-accent);
  border-bottom-color: var(--gold-accent);
}

.tier-title.silver {
  color: #c0c0c0;
  border-bottom-color: #c0c0c0;
}

.tier-title.bronze {
  color: #cd7f32;
  border-bottom-color: #cd7f32;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sponsor-card {
  background: var(--pure-white);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  text-align: center;
  transition: var(--transition);
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sponsor-card.small {
  padding: 2rem 1rem;
}

.sponsor-logo i {
  font-size: 3rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.become-sponsor {
  background: var(--subtle-blue);
  color: var(--pure-white);
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
}

.sponsor-cta-content h3 {
  color: var(--pure-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sponsor-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  background: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
  color: var(--navy-blue);
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--pure-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.volunteer-opportunities {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--light-blue);
  border-radius: 8px;
}

.volunteer-opportunities h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.opportunities-list {
  list-style: none;
}

.opportunities-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--medium-gray);
}

.opportunities-list i {
  color: var(--patriot-red);
}

.contact-info {
  background: var(--pure-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--patriot-red);
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--navy-blue);
  margin-bottom: 0.25rem;
}

.info-item a {
  color: var(--patriot-red);
}

.info-item a:hover {
  text-decoration: underline;
}

.map-container {
  margin-bottom: 2rem;
}

.map-container h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.social-links h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--navy-blue);
  color: var(--pure-white);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--patriot-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ===========================
   Donate Section
   =========================== */
.donate-section {
  background: var(--pure-white);
}

.donate-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.donation-options h3 {
  color: var(--navy-blue);
  margin-bottom: 2rem;
}

.donation-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.donation-tier {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.donation-tier:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.donation-tier.featured {
  background: var(--light-blue);
  border-color: var(--gold-accent);
  position: relative;
}

.donation-tier.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--dark-navy);
  padding: 4px 16px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tier-icon {
  font-size: 2.5rem;
  color: var(--patriot-red);
  margin-bottom: 1rem;
}

.donation-tier h4 {
  font-size: 2rem;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.custom-donation {
  margin-bottom: 3rem;
}

.custom-donation h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.donation-form {
  display: flex;
  gap: 1rem;
}

.input-group {
  flex: 1;
  position: relative;
}

.input-group .currency {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-blue);
}

.input-group input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1.1rem;
  font-family: var(--body-font);
}

.monthly-giving {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.monthly-giving h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.monthly-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.monthly-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--pure-white);
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.monthly-option:hover {
  border-color: var(--navy-blue);
}

.monthly-option input[type="radio"] {
  accent-color: var(--patriot-red);
}

.donate-info {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.nonprofit-badge {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gold-gradient);
  color: var(--dark-navy);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.nonprofit-badge i {
  font-size: 2.5rem;
}

.nonprofit-badge strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.nonprofit-badge .small-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.impact-info {
  margin-bottom: 2rem;
}

.impact-info h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.impact-item i {
  color: var(--patriot-red);
  margin-top: 4px;
}

.other-ways {
  margin-bottom: 2rem;
}

.other-ways h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.other-ways ul {
  list-style: none;
}

.other-ways li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.other-ways i {
  color: var(--patriot-red);
}

.secure-donation {
  text-align: center;
  padding: 1rem;
  background: var(--pure-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.secure-donation i {
  color: var(--patriot-red);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--dark-navy);
  color: var(--pure-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-brand h3 {
  color: var(--pure-white);
  font-size: 1.5rem;
}

.footer-column p {
  color: var(--light-blue);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.tax-id {
  font-size: 0.9rem;
  color: var(--gold-accent);
}

.footer-column h4 {
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-blue);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--patriot-red);
  transform: translateY(-3px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--light-blue);
}

.footer-contact a {
  color: var(--light-blue);
}

.footer-contact a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--light-blue);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--gold-accent);
}

/* ===========================
   Sticky Donate Button
   =========================== */
.sticky-donate {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
}

.sticky-donate .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 24px;
  box-shadow: var(--shadow-xl);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .donate-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  /* Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--pure-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
  }

  .hero-date,
  .hero-location {
    display: flex;
    margin: 0.5rem 0;
  }

  /* Sections */
  section {
    padding: 60px 0;
  }

  /* Schedule */
  .schedule-tabs {
    flex-direction: column;
  }

  .schedule-tab {
    flex-direction: row;
    justify-content: space-between;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .timeline-time {
    margin-bottom: 0.5rem;
  }

  /* Grids */
  .donation-tiers,
  .gallery-grid,
  .sponsor-grid,
  .values-grid,
  .monthly-options {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Sticky Donate */
  .sticky-donate {
    display: block;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .sticky-donate,
  .hero-actions,
  .scroll-indicator {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
}
