/*================================
  GLOBAL COLORS & TYPE
================================*/

:root {
  --primary-dark: #003366;
  --primary-light: #66CCFF;
  --neutral-light: #f9f9f9;
  --gold: #FFC107;
  --soft-gold: #fff8e1;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: var(--primary-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/*=====================================================
  HEADER & NAVIGATION
=====================================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 6px solid var(--gold);
  position: relative;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-left .logo {
  height: 55px;
}

#main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

#main-nav a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

#main-nav a:hover {
  color: var(--primary-light);
}

.menu-toggle {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  #main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 2rem;
    background: #ffffff;
    padding: 1rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: 99;
  }

  #main-nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-top: 0.5rem;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
  }
}

.logo-left p {
  margin: 0;
  line-height: 1.2;
  padding: 0;
}
/*================================
  SECTION BASE
================================*/

section {
  padding: 5rem 2rem;
  text-align: center;
}

/* Alternate backgrounds */
.impact-successes {
  background: var(--neutral-light);
}
.impact-sponsorship {
  background: white;
}
.impact-donations {
  background: var(--neutral-light);
}
.impact-refund {
  background: white;
}

/*================================
  HERO SECTION
================================*/

.impact-hero {
  background: var(--primary-dark);
  color: var(--primary-light);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 6px solid var(--gold);

}

.impact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.impact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--gold);
  font-style:bold;
}

/*==================================
  Impact Partner: Video + Sponsorship
==================================*/

.impact-partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: white;
  align-items: start;

}

.impact-partner-wrapper {
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

/* Left and right columns */
.impact-partner .impact-video,
.impact-partner .impact-sponsorship {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Video container */
.impact-partner .impact-video h2 {
  margin-bottom: 0.5rem;
}

.impact-partner .impact-video {
    align-items: center;
    text-align: center;
}

.impact-partner .impact-video video {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

/* Shared heading + paragraph styling */
.impact-partner h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.impact-partner p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  max-width: 500px;
  line-height: 1.5;
}

/* Sponsorship button */
.impact-sponsorship .btn-cta {
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.impact-sponsorship .btn-cta:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .impact-partner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
    max-width: 100%;
  }

  .impact-partner .impact-video,
  .impact-partner .impact-sponsorship {
    align-items: center;
    text-align: center;
  }

  .impact-partner .impact-video video {
    width: 100%;
  }

  .impact-sponsorship .btn-cta {
    margin: 0 auto;
  }
}


/*===============
  Donation Section
===============*/

.donation-section {
  background-color: #f8f9fa; /* or your brand's light background */
  padding: 40px 20px;
  text-align: center;
    border-bottom: 4px solid var(--gold);
}

.donation-graphic {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.donation-cta .donate-btn {
  display: inline-block;
  background-color: #9c6b34; /* Adjust to match brand */
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight:600;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.donation-cta .donate-btn:hover {
  background-color: #b67d45; /* Optional hover tone */
}

.microcopy {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

/*================================
  HEADINGS
================================*/

h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--primary-dark);
}

/*================================
  CTA BUTTONS
================================*/

.btn-cta {
  background: var(--primary-dark);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: scale(1.05);
}

/*================================
  SUCCESS GRID
================================*/

.success-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.success-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 320px;
  flex: 1;
  transition: transform 0.3s ease;
    border-top: 4px solid var(--gold);
}

.success-card:hover {
  transform: translateY(-6px);
}

.success-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.success-card p {
  font-size: 0.95rem;
  color: var(--primary-dark);
}



.impact-successes {
      border-top: 4px solid var(--gold);
}


/*================================
  RESPONSIVE
================================*/

@media (max-width: 768px) {
  .success-grid {
    flex-direction: column;
    align-items: center;
  }

  #donation-amount {
    width: 100%;
    max-width: 300px;
  }

  .impact-hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/*=====================================================
  FOOTER
=====================================================*/

.site-footer {
  background: var(--primary-dark);
  color: var(--neutral-light);
  padding: 2rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  border-top: 6px solid var(--gold);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color:white;
}


.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: transparent;
}

.footer-nav a {
  color: var(--neutral-light);
  text-decoration: none;
  font-weight: 500;
  margin: 0 0.75rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-nav a {
    margin: 0.5rem 0;
  }
}

/*============================================
socials footer
============================================*/

.social-callout {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: white;
}

.social-callout a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 500;
}

.social-callout a:hover {
  color: #fff;
  text-decoration: none;
}