/* =========================
   RESET
========================= */

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family:"Helvetica Neue", Arial, sans-serif;
  background:#0f0f0f;
  color:#f5f5f5;
  line-height:1.6;
  overflow-x:hidden;
}

/* =========================
   NAV — DARKER & CLEAN
========================= */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.55) 40%,
      rgba(0,0,0,0.25) 75%,
      rgba(0,0,0,0) 100%
    );

  backdrop-filter: blur(14px);
  z-index: 100;
}

/* Logo */

.nav img {
  height:90px;
  transition:all 0.3s ease;
  filter:drop-shadow(0 0 12px rgba(255,255,255,0.15));
}

.nav img:hover {
  transform:scale(1.08);
  filter:
    drop-shadow(0 0 20px rgba(192,57,43,0.6))
    drop-shadow(0 0 35px rgba(192,57,43,0.25));
}

/* Nav Links */

.nav-links {
  display:flex;
  gap:2.5rem;
  align-items:center;
  list-style:none;
}

.nav-links a {
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
  letter-spacing:0.08em;
  transition:all 0.3s ease;
  position:relative;
}

.nav-links a:hover {
  text-shadow:0 0 12px rgba(192,57,43,0.6);
}

.nav-links a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#c0392b;
  transition:width 0.3s ease;
}

.nav-links a:hover::after {
  width:100%;
}

.nav-links .donate {
  color:#c0392b;
  font-weight:700;
}

/* =========================
   HERO
========================= */

.hero {
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:0 8%;
  padding-top:80px;
  background: radial-gradient(circle at top left,#2a2a2a,#0f0f0f);
  position:relative;
  overflow:hidden;
}

.hero::before {
  content:"";
  position:absolute;
  top:-25%;
  left:50%;
  transform:translateX(-50%);
  width:1000px;
  height:1000px;

  background:
    radial-gradient(circle,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.08) 30%,
      rgba(255,255,255,0.02) 55%,
      transparent 70%);

  pointer-events:none;
  z-index:0;
}

.hero::after {
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:10px;

  background:
    linear-gradient(
      to bottom,
      rgba(15,15,15,0) 0%,
      rgba(15,15,15,0.8) 60%,
      #0f0f0f 100%
    );

  pointer-events:none;
  z-index:1;
}

.hero-content,
.hero-image {
  position:relative;
  z-index:2;
}

.hero-content {
  max-width:650px;
  text-align:center;
  margin:0 auto;
}

/* =========================
   HERO TITLE
========================= */

.pre-title {
  font-family: 'Oswald', sans-serif;

  font-size: 1.3rem;
  letter-spacing: 3px;

  opacity: 0.7;
  margin-bottom: 10px;
}

.pre-title span {
  color: #e6392f;
  font-weight: 700;
}

.main-title {
  font-family: 'Bangers', cursive;

  font-size: clamp(5rem, 5vw, 4.2rem); /* 👈 smaller + controlled */
  letter-spacing: 6px;

  text-transform: uppercase;

  color: #e6e6e6;

  line-height: 1.1;

  transform: skew(-6deg); /* instead of straight or rotate */

  text-shadow:
    0 8px 30px rgba(0,0,0,0.8),
    0 0 12px rgba(255,255,255,0.12);
}



.main-title:hover {
  text-shadow:
    0 0 12px rgba(255,255,255,0.25),
    0 8px 30px rgba(0,0,0,0.9);
}

.concert-script {
  font-family:'Permanent Marker', cursive;
  font-size:2.2rem;
  color:#c0392b;
  margin-top:0.5rem;
}

/* =========================
   EVENT DETAILS
========================= */

.event-details {
  margin-top:2rem;
}

.event-details p:first-child {
  font-weight:600;
  opacity:0.85;
  letter-spacing:0.05em;
}

.event-details p:nth-child(2) {
  font-size:1.4rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.08em;
}

.event-details p:nth-child(3) {
  margin-top:0.3rem;
  font-size:1rem;
  opacity:0.7;
}

/* =========================
   HERO IMAGE
========================= */

.hero-image {
  display:flex;
  justify-content:center;
  align-items:flex-end;
  transform: translateX(60px);
}

.hero-image img {
  max-height:85vh;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,0.8));
  transform: scale(1.08) translateY(-10px);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.7);
}

.hero-image::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  right: 10%;
  top: 50%;
  transform: translateY(-50%);

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.06),
    transparent 70%
  );

  filter: blur(60px);
  z-index: -1;
}

/* =========================
   MARQUEE BOX
========================= */

.hero-marquee {
  margin-top:3rem;
}

.marquee-box {
  position:relative;
  padding:2rem;
  border-radius:14px;

  background: rgba(20,20,20,0.75);
  backdrop-filter: blur(6px);
  border:1px solid rgba(192,57,43,0.5);
  overflow:hidden;
}

.marquee-box::before {
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:18px;

  background:
    radial-gradient(circle, rgba(192,57,43,0.8) 2px, transparent 2px);

  background-size:18px 18px;
  animation:marqueeGlow 8s linear infinite;
  opacity:0.18;
  pointer-events:none;
}

.marquee-box h3 {
  font-family:'Oswald', sans-serif;
  font-size:1.7rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  margin-bottom:1.4rem;
}

.marquee-locations span {
  display:inline-block;
  margin:0.4rem 0.6rem;
  cursor:pointer;
  transition:all 0.25s ease;
}

.marquee-locations span:hover {
  color:#c0392b;
  animation:shake 0.35s ease;
}

.marquee-pricing {
  margin-top:1.6rem;
  font-weight:800;
  font-size:1.15rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#c0392b;
}

/* Animations */

@keyframes shake {
  0% { transform:translateX(0); }
  25% { transform:translateX(-3px); }
  50% { transform:translateX(3px); }
  75% { transform:translateX(-2px); }
  100% { transform:translateX(0); }
}

@keyframes marqueeGlow {
  0% { background-position:0 0; }
  100% { background-position:18px 18px; }
}

/* =========================
   BUTTONS
========================= */

.learn-btn {
  display:inline-block;
  margin:2.2rem auto 0 auto;
}

.btn.secondary {
  position:relative;
  border:2px solid #c0392b;
  color:#ffffff;
  padding:0.9rem 2.5rem;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  background:transparent;
  text-decoration:none;
  overflow:hidden;
  transition:transform 0.3s ease;
}

.btn.secondary::before {
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
  background:#c0392b;
  transform:translateX(100%);
  transition:transform 0.35s ease;
  z-index:-1;
}

.btn.secondary:hover::before {
  transform:translateX(0);
}

.btn.secondary:hover {
  transform:translateY(-4px);
  box-shadow:0 15px 40px rgba(192,57,43,0.45);
}

/* =========================
   HOME INFO SECTION
========================= */

.info-band {
  padding:4rem 8% 3rem 8%;
  margin-top:0px;

  background:
    linear-gradient(
      to bottom,
      rgba(15,15,15,0) 0%,
      rgba(15,15,15,0.4) 30%,
      rgba(15,15,15,0.75) 65%,
      rgba(15,15,15,0.95) 100%
    );

  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change:transform, opacity;
}

.info-band.visible {
  opacity:1;
  transform:translateY(0);
}

.info-grid {
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:5rem;
  align-items:center;
}

.about-text {
  font-size:1.13rem;
  line-height:1.8;
  opacity:0.9;
  max-width:800px;
}

.song-line {
  margin-top:1.5rem;
  font-weight:700;
  color:#c0392b;
  letter-spacing:0.06em;
  text-shadow:0 0 8px rgba(192,57,43,0.3);
}

.info-right {
  border-left:1px solid rgba(255,255,255,0.04);
  padding-left:3rem;
  font-size:0.9rem;
}

.sponsor-block {
  margin-bottom:1.8rem;
}

.sponsor-block h4 {
  text-transform:uppercase;
  letter-spacing:0.15em;
  font-size:0.95rem;
  margin-bottom:0.6rem;
  color:#c0392b;
}

.sponsor-block p {
  opacity:0.85;
  line-height:1.6;
}

/* =========================
   SUB HERO / PAGE HEADERS
========================= */

/* =========================
   SUB HERO IMPROVEMENT
========================= */

.sub-hero{
  position:relative;
  padding:140px 8% 40px;
  text-align:center;
}

/* HERO TITLE */

.sub-hero h1{
  font-family:'Oswald', sans-serif;
  font-size:clamp(2.8rem,3vw,3.4rem);
  letter-spacing:0.08em;
  text-transform:uppercase;

  text-shadow:
    0 8px 25px rgba(0,0,0,.7),
    0 0 20px rgba(255,255,255,.05);

  margin-bottom:10px;
}

/* red accent divider */

.sub-hero::after{
  content:"";
  display:block;
  width:80px;
  height:3px;
  margin:16px auto 0 auto;

  background:#c0392b;
  border-radius:2px;

  box-shadow:0 0 12px rgba(192,57,43,.4);
}

/* subtle stage light glow */

.sub-hero::before{
  content:"";
  position:absolute;
  top:-40px;
  left:50%;
  transform:translateX(-50%);
  width:600px;
  height:300px;

  background:
    radial-gradient(circle,
      rgba(255,255,255,.07),
      transparent 70%);

  pointer-events:none;
}

.page-hero {
  padding: 140px 10% 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95), #000);
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  color: #aaa;
  font-size: 18px;
}

/* =========================
   GENERIC PAGE STRUCTURE
========================= */

.page-section {
  padding: 140px 8% 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-section h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.page-intro {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
  max-width: 750px;
}

.page-container.narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   GRID / CARDS
========================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2rem;
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-6px);
}

/* =========================
   ACCORDION
========================= */

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}

.accordion-header {
  cursor: pointer;
  padding: 1.2rem 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: #c0392b;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

/* =========================
   DONATE PAGE BUTTON
========================= */

.donate-page .btn.secondary::before {
  transform: scaleX(0);
  transform-origin: right;
}

.donate-page .btn.secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  background: linear-gradient(to bottom, rgba(0,0,0,.95), #000);
  text-align: center;
}

/* =========================
   ABOUT GALLERY
========================= */

.about-gallery {
  padding-top:15px;
  padding: 10px 8% 30px;
}

.gallery-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0,0,0,0.6);
  padding: 20px 30px;
  border-left: 4px solid #c0392b;
}

.gallery-overlay h2 {
  margin: 0;
  font-size: 24px;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-content {
  padding: 80px 10%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.about-content h2 {
  margin-bottom: 15px;
  color: #c0392b;
}

.about-content p {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Mission List */

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  margin-bottom: 1rem;
  padding-left: 18px;
  position: relative;
}

.mission-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c0392b;
}

/* =========================
   MEMBERS
========================= */

.members-section {
  padding: 120px 8%;
  background: #0a0a0a;
  text-align: center;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.member-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  border-color: #c0392b;
}

/* =========================
   JOIN / DONATION TIERS
========================= */

.join-section {
  padding: 120px 8%;
  text-align: center;
}

.tier-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.tier-card {
  padding: 2rem 3rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.tier-card.highlight {
  border-color: #c0392b;
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: #c0392b;
}

/* =========================
   LEADERSHIP / ABOUT SPLIT
========================= */

.about-split {
  padding: 40px 8% 30px;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
  max-width: 650px;
}

.leadership-box {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.leader-card {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.leader-card strong {
  display: block;
}

.leader-card span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.leader-card:hover {
  border-color: #c0392b;
  transform: translateY(-4px);
}

/* =========================
   INLINE ABOUT + LEADERSHIP
========================= */

.about-top-inline {
  padding: 40px 8% 20px;
}

.about-inline-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-inline-text p {
  line-height: 1.7;
  max-width: 700px;
}

.about-inline-leadership h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.leader-line {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.leader-line span {
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.leader-line span::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#c0392b;
  transition:width 0.25s ease;
}

.leader-line span:hover {
  color:#c0392b;
  transform:translateX(6px);
}

.leader-line span:hover::after {
  width:100%;
}

/* =========================
   FADE IN ANIMATION
========================= */

.fade-in {
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.fade-in.visible {
  opacity:1;
  transform:translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-inline-grid{
    grid-template-columns:1fr;
  }

  .about-split-grid{
    grid-template-columns:1fr;
  }

  .leadership-grid{
    grid-template-columns:1fr;
  }

  .gallery-container{
    height:300px;
  }

  .leader-line{
    flex-direction:row;
    flex-wrap:wrap;
    gap:1.2rem;
  }

}

/* =========================
   ABOUT PAGE
========================= */


/* HERO TITLE */

.sub-hero h1{
text-align:center;
}


/* =========================
   LEADERSHIP SECTION
========================= */

.leadership-section{
padding:30px 8% 50px;
text-align:center;
}

.leadership-title{
font-family:'Oswald',sans-serif;
letter-spacing:.18em;
font-size:.9rem;
opacity:.7;
margin-bottom:28px;
text-transform:uppercase;
}

.leadership-row{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:18px;
}

.leader-card{
padding:14px 20px;
border:1px solid rgba(255,255,255,.08);
background:#0a0a0a;
transition:.25s ease;
min-width:180px;
}

.leader-card strong{
display:block;
font-size:.95rem;
}

.leader-card span{
font-size:.8rem;
opacity:.7;
}

.leader-card:hover{
transform:translateY(-4px);
border-color:#c0392b;
}


/* =========================
   ABOUT INTRO
========================= */

.about-intro{
max-width:1200px;
margin:80px auto;
padding:0 8%;
text-align:center;
line-height:1.8;
font-size:1.05rem;
opacity:.9;
}

.about-intro p{
margin-bottom:1.2rem;
}


/* =========================
   MISSION GRID
========================= */

.about-mission{
padding:60px 8% 100px;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:4rem;
max-width:1100px;
margin:0 auto;
}

.about-mission h2{
margin-bottom:20px;
color:#c0392b;
}


/* =========================
   MISSION LIST
========================= */

.mission-list{
list-style:none;
padding-left:0;
}

.mission-list li{
margin-bottom:1rem;
padding-left:18px;
position:relative;
}

.mission-list li::before{
content:"•";
position:absolute;
left:0;
color:#c0392b;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

.mission-grid{
grid-template-columns:1fr;
}

}

/* =========================
   ABOUT PAGE ENHANCEMENTS
========================= */

.about-intro{
max-width:1200px;
margin:80px auto;
padding:0 8%;
text-align:center;
line-height:1.8;
font-size:1.05rem;
opacity:.9;
}

.leadership-section{
padding:0px 6%;
text-align:center;
border-top:1px solid rgba(255,255,255,.05);
border-bottom:1px solid rgba(255,255,255,.05);
}

.leadership-row{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:22px;
max-width:1200px;
margin:auto;
}

.leader-card{
padding:16px 22px;
border:1px solid rgba(255,255,255,.08);
background:#0b0b0b;
transition:.25s ease;
min-width:180px;
}

.about-mission{
padding:80px 6% 120px;
max-width:1200px;
margin:auto;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:5rem;
max-width:1200px;
margin:auto;
}

.about-gallery{
padding-top:0px;
}

.gallery-container{
max-width:1400px;
margin:0 auto;
height:420px;
border-radius:14px;
overflow:hidden;
position:relative;
}

/* =========================
   HERO FIX PATCH (SAFE)
   ========================= */

/* =========================
   HERO IMAGE (UPGRADED)
========================= */

.hero-image {
  flex: 1.2; /* gives it more space */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  width: 115%;
  max-width: 700px;
  transform: scale(1.08);
  border-radius: 40px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.hero {
  min-height: 90vh; /* was probably smaller before */
  padding-top: 120px;
  gap: 60px;
}

/* Improve ticket box depth */
.marquee-box {
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* =========================
   MOBILE FIX (CLEAN VERSION)
========================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {

  /* NAV */
  .nav {
    position: fixed;
    top: 0;
    z-index: 1000;

    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .nav img {
    max-width: none;
    width: 65%;
    object-fit: contain;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    text-align: center;
    padding: 20px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  /* HERO (STACK CLEANLY) */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  /* PRE TITLE */
  .hero-content h2 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.7;
  }

  /* MAIN TITLE */
  .main-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  /* LIVE TEXT */
  .live-text {
    font-size: 0.95rem;
  }

  .hero-content p,
  .hero-content h3 {
    font-size: 1rem;
  }

  /* TICKET BOX */
  .marquee-box {
    width: 100%;
    max-width: 350px;
    margin: 25px auto;
    padding: 20px;
  }

  /* HERO IMAGE */
  .hero-image {
    margin-top: 20px;
    transform: none;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
  }

  /* BOTTOM SECTION (NO SIDE BY SIDE) */

/* STACK LAYOUT */
  .info-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px;
  }

  /* LEFT + RIGHT CONTAINERS */
  .info-left,
  .info-right {
    width: 100% !important;
    max-width: 350px;
    text-align: center;
  }

  /* 🔥 FIX SPONSOR SHIFT */
  .sponsor-block {
    width: 100%;
    text-align: center;
  }

  .sponsor-block h4 {
    text-align: center;
    margin-bottom: 10px;
  }

  .sponsor-block p {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  /* 🔥 REMOVE ANY LEFT OFFSET */
  .info-right {
    padding: 0 !important;
    margin: 0 auto !important;
  }

}

@media (max-width: 768px) {

  /* ================= GAP UNDER NAV ================= */

  body {
    padding-top: 70px;
  }

  .sub-hero {
    padding-top: 20px;
    text-align: center;
  }

  .sub-hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  /* ================= GALLERY ================= */

  .gallery-container {
    margin-top: 20px;
  }


  /* ================= LEADERSHIP ================= */

  .leadership-section {
    padding: 30px 15px;
  }

  .leadership-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .leadership-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .leader-card {
    padding: 15px;
    text-align: center;
    font-size: 14px;
  }

  .leader-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
  }

  .leader-card span {
    font-size: 13px;
    opacity: 0.8;
  }

  /* ================= INTRO TEXT ================= */

  .about-intro {
    padding: 20px;
    text-align: center;
  }

  .about-intro p {
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* ================= MISSION SECTION ================= */

  .mission-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    padding: 0 20px;
  }

  .mission-grid h2 {
    text-align: center;
    margin-bottom: 10px;
  }

  .mission-list {
    padding-left: 20px;
  }

  .mission-list li {
    margin-bottom: 12px;
    line-height: 1.5;
  }

}

/* =========================
   GLOBAL NAV FIX (CRITICAL)
========================= */

.nav {
  z-index: 9999 !important;
}

/* Prevent overlays from blocking clicks */
.hero::before,
.hero::after,
.sub-hero::before,
.gallery-overlay {
  pointer-events: none;
}

/* =========================
   MOBILE NAV (CLEAN + FINAL)
========================= */

@media (max-width: 768px) {

  body {
    padding-top: 80px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 20px;

    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0)
      );

    backdrop-filter: blur(14px);
  }

  .nav-logo img {
    height: 60px;
    width: auto;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;

    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;

    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(14px);

    padding: 20px 0;
    z-index: 9999;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1.1rem;
  }

}

/* =========================
   FIX INFO GRID SHIFT
========================= */

@media (max-width: 768px) {

  .info-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    align-items: center;
  }

  .info-left,
  .info-right {
    width: 100%;
    max-width: 350px;
    text-align: center;
  }

  .info-right {
    padding-left: 0 !important;
    border-left: none !important;
  }

}

/* =========================
   FIX SUB HERO GAP
========================= */

@media (max-width: 768px) {

  .sub-hero {
    padding: 20px 20px 10px;
  }

}

/* =========================
   SAFE WIDTH FIX (NO SCROLL BUG)
========================= */

* {
  box-sizing: border-box;
}

/* ONLY apply to body (not html) */
body {
  overflow-x: hidden;
}

/* Fix nav alignment WITHOUT viewport bugs */
.nav {
  width: 100%;
  left: 0;
}

/* Fix mobile overflow sources */
@media (max-width: 768px) {

  .mission-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-container img {
    width: 100%;
    height: auto;
  }

}

/* =========================
   ABOUT PAGE MOBILE TIGHTEN
========================= */

@media (max-width: 768px) {

  /* Reduce big vertical gaps between sections */
  .about-gallery,
  .leadership-section,
  .about-intro,
  .about-mission {
    padding: 30px 20px !important;
    margin: 0 !important;
  }

  /* Reduce spacing inside text sections */
  .about-intro p,
  .about-mission p,
  .mission-list li {
    margin-bottom: 14px;
    line-height: 1.5;
  }

  /* Tighten headings */
  .about-intro h2,
  .about-mission h2,
  .leadership-title {
    margin-bottom: 12px;
  }

  /* Reduce space above "Our Mission" */
  .about-mission {
    padding-top: 20px !important;
  }

  /* Remove fade-in effect on mobile (instant load) */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}

/* =========================
   FIX ABOUT IMAGE OVERLAY (MOBILE)
========================= */

.about-gallery .gallery-container {
  position: relative;
  overflow: hidden;
}



/* Mobile fine-tuning */


/* =========================
   STABILITY FIX (CRITICAL)
========================= */

/* Fix nav width issue */
.nav {
  width: 100%;
  max-width: 100%;
}

/* Prevent horizontal shift */
body {
  overflow-x: hidden;
}

/* Ensure fade-in doesn't break layout on load */
.fade-in {
  opacity: 1;
  transform: none;
}

/* Only allow animation AFTER load */
body.loaded .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* Fix gallery container stability */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* =========================
   MOBILE MASTER FIX
========================= */

@media (max-width: 768px) {

  /* ===== NAV FIX ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    padding: 0 16px;
    z-index: 9999;

    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;

    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px 0;
    gap: 16px;

    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  /* ===== HERO STACK ===== */
  .hero {
    flex-direction: column;
    padding-top: 90px;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 90%;
    height: auto;
  }

  .hero-content {
    text-align: center;
    padding: 0 16px;
  }

  /* ===== INFO SECTION STACK ===== */
  .info-grid {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .info-left,
  .info-right {
    width: 100%;
    text-align: center;
  }

  /* ===== ABOUT PAGE FIXES ===== */

  /* Fix overlay text */
  .gallery-container {
    position: relative;
  }

  /* Reduce huge spacing */
  .about-intro,
  .about-mission {
    padding: 20px 16px;
  }

  .mission-grid {
    flex-direction: column;
    gap: 20px;
  }

  /* Leadership tighter */
  .leadership-row {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .leader-card {
    width: 45%;
  }

  /* ===== REMOVE FADE ON MOBILE ===== */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

}

/* =========================
   FINAL MOBILE CLEAN FIX
========================= */

@media (max-width: 768px) {

  /* ===== FIX NAV CUT OFF (REAL FIX) ===== */
  html, body {
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

 

  /* ===== REMOVE WEIRD LEFT RED BAR EFFECT ===== */
  .gallery-container::before {
    display: none !important;
  }

  /* ===== FIX GAP UNDER GALLERY ===== */
  .about-gallery {
    margin-bottom: 10px;
  }

  .about-intro {
    margin-top: 0;
    padding-top: 10px;
  }

  /* ===== MAKE SURE IMAGE DOESN'T OVERFLOW ===== */
  .gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

}

/* ===== FINAL GALLERY OVERLAY (MOBILE PERFECT) ===== */



/* ===== MATCH DESKTOP OVERLAY ON MOBILE ===== */


/* ===== FIX GALLERY HEIGHT + STACKING ===== */

.gallery-container {
  position: relative;
  overflow: hidden;
}

/* CRITICAL: stack slides on top of each other */
.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
  position: absolute;
}

/* make sure images define height */
.gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {

  .gallery-overlay h2 {
    font-size: 0.85rem;  /* smaller like desktop */
    margin: 0;
    line-height: 1.2;
  }

  .gallery-item {
    position: relative;
  }
}
@media (max-width: 768px) {

  .gallery-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;

    display: inline-block;

    width: auto;
    max-width: 70%;

    background: rgba(0,0,0,0.55);
    padding: 6px 10px;
    border-radius: 4px;

    transform: none;
    z-index: 10;
  }

}

@media (max-width: 768px) {

  /* keep slider working */
  .gallery-slide {
    position: absolute;
    opacity: 0;
  }

  .gallery-slide.active {
    opacity: 1;
    position: relative;
  }

  /* fix container height (THIS was the real issue) */
  .gallery-container {
    height: auto !important;
  }

  /* ensure image defines height */
  .gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 🔥 FIX OVERLAY — THIS IS THE KEY */
  .gallery-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;

    z-index: 5;

    background: rgba(0,0,0,0.65);
    padding: 6px 12px;
    border-radius: 4px;

    max-width: 75%;
  }

  .gallery-overlay h2 {
    font-size: 0.9rem;
    margin: 0;
  }

}

/* ===== DESKTOP GALLERY FIX ===== */

@media (min-width: 769px) {

  .gallery-container {
    height: 420px; /* restore intended height */
  }

  .gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .gallery-slide.active {
    position: relative;
    height: 100%;
  }

  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 THIS centers the image properly */
    object-position: center;
  }

}

/*-------------------------------------------------------------------------*/

/* =========================
   DONATE PAGE (NEW)
========================= */

.donate-wrapper {
  text-align: center;
}

/* Intro */
.donate-intro {
  margin-bottom: 50px;
}

.donate-intro h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.donate-intro p {
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.donate-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Cards */
.donate-card {
  padding: 30px 20px;
  background: rgba(20,20,20,0.6);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  transition: all 0.25s ease;
}

/* subtle hover (not clickable feel) */
.donate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.08);
}

/* Highlight */
.donate-card.highlight {
  border-color: #c0392b;
  box-shadow: 0 0 25px rgba(192,57,43,0.2);
}

/* Text */
.donate-card h3 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* Section blocks */
.donate-section-block {
  margin-top: 40px;
  margin-bottom: 60px;
}

.donate-section-block h2 {
  margin-bottom: 10px;
}

.donate-section-block p {
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Mail box */
.donate-mail {
  margin-top: 40px;
}

.mail-box {
  margin: 20px auto;
  padding: 20px 30px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.8);
  border-left: 4px solid #c0392b;
  font-size: 1.1rem;
}

.note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

  .donate-grid {
    grid-template-columns: 1fr;
  }

  .donate-card {
    padding: 25px;
  }

  .donate-intro h2 {
    font-size: 1.8rem;
  }

}

.top-mail {
  margin-top: -40px;
  margin-bottom: 60px;
}

.donate-mail h2 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* =========================
   DONATE LAYOUT (STICKY)
========================= */

.donate-layout {
  padding-top: 80px; /* reduce top gap */
}

.donate-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT CONTENT */
.donate-main {
  width: 100%;
}

/* RIGHT SIDEBAR */
.donate-sidebar {
  position: relative;
}

/* STICKY BOX */
.sticky-box {
  position: sticky;
  top: 120px; /* stays below nav */
}

/* Make it look nicer */
.sticky-box {
  padding: 25px;
  background: rgba(15,15,15,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

/* tighten spacing */
.donate-intro {
  margin-bottom: 40px;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 900px) {

  .donate-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* disable sticky on mobile */
  .sticky-box {
    position: relative;
    top: auto;
  }

  .donate-sidebar {
    order: -1; /* move to top */
  }

}

/* =========================
   FIX DONATE LAYOUT (CENTERED + SIDEBAR)
========================= */

/* Reduce top gap cleanly */
.page-section.donate-layout {
  padding-top: 40px !important;
}

/* Center container */
.donate-container.centered {
  position: relative;
  max-width: 900px;   /* controls main content width */
  margin: 0 auto;
}

/* Main content stays centered */
.donate-main {
  width: 100%;
}

/* Sidebar sits to the RIGHT of centered content */
.donate-sidebar {
  top: 0;
  left: 100%;
  margin-left: 40px; /* spacing between content + box */
  width: 280px;
}

/* Sticky behavior */
.sticky-box {
  position: sticky;
  top: 110px;
}

/* Make box cleaner */
.sticky-box {
  padding: 25px;
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 1100px) {

  .donate-sidebar {
    position: relative;
    left: auto;
    margin: 40px auto 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .sticky-box {
    position: relative;
    top: auto;
  }

}

/* =========================
   DONATE PAGE FINAL FIX
========================= */

/* Reduce top spacing to match other pages */
body.donate-page .sub-hero {
  padding: 120px 8% 20px; /* was 140px 8% 40px */
}

body.donate-page .page-section {
  padding-top: 40px; /* was 140px */
}



/* =========================
   DONATE FINAL (WORKING STICKY)
========================= */

/* Fix top spacing */
body.donate-page .sub-hero {
  padding: 120px 8% 20px;
}

body.donate-page .page-section {
  padding-top: 40px;
}

/* IMPORTANT: allow sticky to work */
body.donate-page .donate-container {
  overflow: visible !important;
}

/* Sticky behavior */
body.donate-page .sticky-box {
  position: sticky;
  top: 110px; /* sits under nav */
}

/* Keep sidebar correctly placed */
body.donate-page .donate-sidebar {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 40px;
  width: 280px;
}

/* Mobile fallback */
@media (max-width: 1100px) {

  body.donate-page .donate-sidebar {
    position: relative;
    left: auto;
    margin: 40px auto 0 auto;
    width: 100%;
    max-width: 400px;
  }

  body.donate-page .sticky-box {
    position: relative;
    top: auto;
  }

}

/* =========================
   FINAL WORKING SIDEBAR + STICKY
========================= */

body.donate-page .donate-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Main content stays centered */
body.donate-page .donate-main {
  max-width: 700px;
  width: 100%;
}

/* Sidebar sits to the right WITHOUT breaking sticky */
body.donate-page .donate-sidebar {
  width: 280px;
  flex-shrink: 0;
}

/* THIS is the actual sticky behavior */
body.donate-page .sticky-box {
  position: sticky;
  top: 110px;
}

@media (max-width: 900px) {

  body.donate-page .donate-container {
    flex-direction: column;
    align-items: center;
  }

  body.donate-page .donate-sidebar {
    width: 100%;
    max-width: 400px;
  }

  body.donate-page .sticky-box {
    position: relative;
    top: auto;
  }

}

