@font-face {
  font-family: ChunkPrint;
  src: url("fonts/Chunk Five Print.ttf");
}

@font-face {
  font-family: Montserrat;
  src: url("fonts/Montserrat-VariableFont_wght.ttf");
}

@font-face {
  font-family: Heathergreen;
  src: url("fonts/Heathergreen.otf");
}
html, body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: white;
  font-family: Montserrat, sans-serif;
  padding-top: 64px;
}

.site-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  /* ðŸ”¥ DARKER GLASS */
  background: rgba(2, 8, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(26px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}


.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(2, 12, 8, 0.8),
    transparent
  );
}



.brand-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logos img {
  height: 32px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  color: #28c64d;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Heathergreen;
  font-size: 25px;
  letter-spacing: 2px;
	font-weight: lighter;
	font-size: 25px;
}
.hero-content {
  width: min(1500px, 92%);
  margin: 0 auto;
  text-align: center;
	margin-top: 50px;
}

.top-area {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 0px;
  margin-bottom: 80px;
}

.main-logo {
  width: 80%;
  max-width: 600px;
  justify-self: center;
}

.event-info {
  text-align: center;
  max-width: 1050px;
  justify-self: center;
}

.event-info h1 {
  font-family: ChunkPrint, serif;
  font-size: clamp(140px, 8vw, 165px);
  line-height: .86;
  text-transform: uppercase;
  color: white;
  font-weight: lighter;
  margin: 0;
}

.event-info h2 {
  font-family: ChunkPrint, serif;
  color: #27c653;
  font-size: clamp(48px, 3.6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1px;
  font-weight: lighter;
}

.venue-line {
  display: block;
  font-family: ChunkPrint, serif;
  color: white;
  font-size: clamp(28px, 2vw, 36px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown {
  width: auto;
  margin: 70px auto 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.countdown div {
  text-align: center;
  padding: 0 32px;
  border-right: 2px solid #28c64d;
}

.countdown div:last-child {
  border-right: none;
}

.countdown span {
  display: block;
  font-family: Heathergreen;
  src: url("fonts/Heathergreen.otf");
  font-size: 150px;
  line-height: 0.9;
  color: white;
}

.countdown p {
  font-family: Heathergreen;
  src: url("fonts/Heathergreen.otf");
  text-transform: uppercase;
  font-size: 40px;
	letter-spacing: 5px;
  margin-top: 14px;
  color: white;
}
.about {
  width: min(1320px, 92%);
  margin: 0 auto 30px;
}

.about-card {
  background: rgba(3, 10, 24, 0.72);
  border: 1px solid rgba(40, 198, 77, 0.28);
  border-radius: 28px;
  padding: 70px;
  text-align: left;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(40,198,77,.18), transparent 35%);
  pointer-events: none;
}

.about-label {
  display: inline-flex;
  color: #28c64d;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.about-card h3 {
  max-width: 950px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(38px, 5vw, 76px);
  line-height: .98;
  font-weight: 900;
  color: white;
  margin-bottom: 34px;
}

.about-card p {
  max-width: 980px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .about {
    margin: 60px auto;
  }

  .about-card {
    padding: 38px 26px;
    border-radius: 20px;
  }
}


.features {
  width: min(1700px, 96%);
 margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.features div {
  position: relative;
  padding: 0 40px;
}

/* vertical dividers */
.features div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: -20%;
  height: 130%;
  width: 2px;
  background: rgba(40,198,77,0.6);
}

/* BIG top word */
.features h4 {
  font-family: ChunkPrint;
  src: url("fonts/Chunk Five Print.ttf");
  color: #28c64d;
  text-transform: uppercase;
  font-size: 100px;
  line-height: 0.8;
  letter-spacing: 1px;
	font-weight: lighter;
}

/* smaller bottom word */
.features h5 {
  font-family: ChunkFive, serif;
  color: white;
  text-transform: uppercase;
  font-size: clamp(32px, 3vw, 60px);
  line-height: 0.9;
  margin-top: 8px;
}
.features div:hover h4 {
  transform: scale(1.05);
  transition: 0.25s ease;
}
.features div {
  opacity: 0;
  transform: translateY(35px);
  animation: featureRise 0.7s ease forwards;
}

.features div:nth-child(1) {
  animation-delay: 0.2s;
}

.features div:nth-child(2) {
  animation-delay: 0.55s;
}

.features div:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes featureRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.experience {
  background: transparent;
  padding: 100px 0;
  overflow: hidden;
}

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

.experience h2 {
  font-family: ChunkFive, serif;
  font-size: clamp(50px, 5vw, 90px);
  color: #28c64d;
  text-transform: uppercase;
  margin-bottom: 55px;
}

.media-marquee {
  width: 100%;
  overflow: hidden;
}

.media-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: mediaScroll 92s linear infinite;
}

.media-track img,
.media-track video {
  width: 430px;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(40, 198, 77, 0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,.6);
}

.media-marquee:hover .media-track {
  animation-play-state: paused;
}

@keyframes mediaScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.tagline,
.closing {
  font-size: 21px;
  margin-bottom: 80px;
}

.media-section {
  height: 280px;
  width: 100%;
  max-width: 900px;
  margin: 35px auto 80px;
  background: radial-gradient(circle, #808080 0%, #555 55%, #111 100%);
	margin-bottom: 20px;
}

.closing {
  padding-bottom: 60px;
  font-size: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 0 18px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 12px;
  }

  .brand-logos img {
    height: 24px;
  }

  .top-area {
    grid-template-columns: 1fr;
  }

  .main-logo {
    max-width: 300px;
    margin: 0 auto;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    margin: 60px auto;
  }

  .countdown div:nth-child(2) {
    border-right: none;
  }

  .about {
    padding: 38px 20px 28px;
  }

  .about h3 {
    top: -62px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .media-section {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features div::after {
    display: none;
  }
}

.sponsor-grid {
  width: min(1200px, 92%);
  margin: 70px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;

  align-items: center;
  justify-items: center;
}
.sponsor img {
  width: 100%;
  max-width: 1200px;
  max-height: 120px;
  object-fit: contain;

  filter: none;        /* ðŸ”¥ THIS FIXES IT */
  opacity: 1;

  transition: 0.3s ease;
}
.sponsor img:hover {
  opacity: 1;
  transform: scale(1.08);
}
.sponsor-grid {
  width: min(1100px, 90%);
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 80px;

  align-items: center;
  justify-items: center;
}
.sponsor img {
  transform: scale(0.9);
  animation: logoPop 0.4s ease forwards;
}

.sponsor:nth-child(1) img { animation-delay: 0.25s; }
.sponsor:nth-child(2) img { animation-delay: 0.45s; }
.sponsor:nth-child(3) img { animation-delay: 0.65s; }
.sponsor:nth-child(4) img { animation-delay: 0.85s; }
.sponsor:nth-child(5) img { animation-delay: 1.05s; }
.sponsor:nth-child(6) img { animation-delay: 1.25s; }
.sponsor:nth-child(7) img { animation-delay: 1.45s; }

@keyframes logoPop {
  to {
    transform: scale(1);
  }
}
.sponsors {
  text-align: center; /* centers everything */
}
.sponsors h2 {
  font-family: ChunkFive, serif;
  font-size: clamp(60px, 6vw, 120px);
  color: #28c64d;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  margin-bottom: 20px;
	font-weight: lighter;
}
.sponsor-sub {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;

  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.sponsor-cta {
  display: inline-block;
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 18px 42px;
  background: #28c64d;
  color: #000;

  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-decoration: none;
  border-radius: 999px;

  box-shadow: 0 0 35px rgba(40,198,77,.35);

  transition: all 0.15s ease;
}

.sponsor-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(40,198,77,.45);
}

.sponsors-content {
  text-align: center;
}

.site-footer {
  background: #000;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-content {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.footer-brand {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer-links {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-links a {
  color: #28c64d;
  text-decoration: none;
  margin: 0 6px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}


nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* normal links */
nav a {
  text-decoration: none;
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

nav a:hover {
  color: #28c64d;
	
}

/* secondary button (vendor) */
.nav-secondary {
  padding: 8px 16px;
  border: 1px solid #28c64d;
  border-radius: 999px;
  color: #28c64d;
}

.nav-secondary:hover {
  background: #28c64d;
  color: #000;
}

/* main CTA */
.nav-cta {
  padding: 10px 20px;
  background: #28c64d;
  color: #000;
  border-radius: 999px;
  font-weight: 800;
}

.nav-cta:hover {
  background: #fff;
}



/* sponsor page */

body {
  margin: 0;
  color: white;
  font-family: Montserrat, sans-serif;
  padding-top: 64px;

  background:
    url("logos/bg.jpg") center top / cover no-repeat;

  background-attachment: fixed;
	background-size: 120%;
}
.sponsor-page {
  background: transparent;
}

.sponsor-hero-page {
  min-height: auto; /*  remove the forced height */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 90px;
}

.sponsor-stats,
.why-sponsor,
.tiers,
.sponsor-final-cta {
  background: transparent;
}

.sponsor-hero-inner {
  width: min(1200px, 92%);
  text-align: center;
}

.eyebrow {
  color: #28c64d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 10px;
}

.sponsor-hero-page h1,
.tiers h2,
.why-sponsor h2,
.sponsor-final-cta h2 {
  font-family: ChunkFive, serif;
  color: #28c64d;
  text-transform: uppercase;
  line-height: .9;
}

.sponsor-hero-page h1 {
  font-size: clamp(60px, 8vw, 140px);
  margin-bottom: 30px;
}

.sponsor-hero-page p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.45;
  color: rgba(255,255,255,.85);
	margin-bottom: 10px;
}

.sponsor-hero-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
	margin-bottom: -70px;
}

.primary-btn,
.secondary-btn,
.tier-card a {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  transition: .25s ease;
}

.primary-btn,
.tier-card a {
  background: #28c64d;
  color: #000;
}

.secondary-btn {
  border: 1px solid #28c64d;
  color: #28c64d;
}

.primary-btn:hover,
.tier-card a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.secondary-btn:hover {
  background: #28c64d;
  color: #000;
}

.sponsor-stats {
  width: min(1300px, 92%);
  margin: 0 auto;
  padding: 50px 0 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.sponsor-stats div {
  border: 1px solid rgba(40,198,77,.35);
  border-radius: 20px;
  padding: 32px 24px;
  background: transparent;
}

.sponsor-stats h3 {
  font-family: ChunkFive, serif;
  color: #28c64d;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 50px);
  line-height: 1;
  margin-bottom: 14px;
}

.sponsor-stats p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
}

.why-sponsor {
  width: min(1300px, 92%);
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.why-sponsor h2,
.tiers h2,
.sponsor-final-cta h2 {
  font-size: clamp(50px, 6vw, 105px);
  margin-bottom: 50px;
}

.why-grid div,
.sponsor-stats div {
  position: relative;
  text-align: left;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(40,198,77,.35);
  background:
    radial-gradient(circle at top right, rgba(40,198,77,.14), transparent 42%),
    rgba(3,10,24,.78);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.why-grid h3,
.sponsor-stats h3 {
  font-family: Montserrat, sans-serif;
  color: #28c64d;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.why-grid p,
.sponsor-stats p {
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  font-size: 18px;
}

.tiers {
  width: min(1450px, 92%);
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.tier-card {
  position: relative;
  text-align: left;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(40,198,77,.35);
  background: rgba(3,10,24,.78);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.featured-tier {
  grid-column: span 3;
  background:
    radial-gradient(circle at top right, rgba(40,198,77,.16), transparent 40%),
    rgba(3,10,24,.88);
  border-color: #28c64d;
}

.tier-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #28c64d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
}

.tier-card h3 {
  font-family: ChunkFive, serif;
  color: white;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 58px);
  line-height: .95;
  margin-bottom: 12px;
}

.tier-card h4 {
  color: #28c64d;
  font-size: clamp(32px, 3vw, 56px);
  margin-bottom: 22px;
  font-weight: 900;
}

.tier-card p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.tier-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.tier-card li {
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.tier-card li::before {
  content: "â€¢";
  color: #28c64d;
  position: absolute;
  left: 0;
}

.custom-note {
  margin-top: 45px;
  color: rgba(255,255,255,.7);
  font-size: 20px;
}

.sponsor-final-cta {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 100px 0 130px;
  text-align: center;
}

.sponsor-final-cta p {
  max-width: 850px;
  margin: 0 auto 35px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: rgba(255,255,255,.85);
}

@media (max-width: 900px) {
  .sponsor-stats,
  .why-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }
	

  .featured-tier {
    grid-column: span 1;
  }

  .tier-card {
    padding: 28px;
  }
}
.hero-title {
  text-align: center;
  margin: 0 auto;
  line-height: 0.9;
}

/* THIS is the key fix */
.no-wrap {
  display: block;       /* makes it behave like a full line */
  width: 100%;
  text-align: center;   /* force true centering */
}
.sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: center;   /* centers the grid */
  justify-items: center;     /* centers content inside each column */
  gap: 100px;
  margin: 60px auto;
	margin-bottom: -40px;
  width: 100%;
  max-width: 1200px;         /* keeps everything visually centered */
}

.sponsor-benefit-card {
  min-height: 240px;
  padding: 40px 14px;
  border-radius: 22px;
  border: 1px solid rgba(30, 255, 92, 0.25);
  background:
    radial-gradient(circle at top right, rgba(30, 255, 92, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(2, 10, 28, 0.92), rgba(1, 35, 30, 0.82));
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
	width: 300px;
	
}

.sponsor-benefit-card h3 {
  margin: 0 0 22px;
  color: #20d84f;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-benefit-card p {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.55;
}

/* Mobile */
@media (max-width: 1000px) {
  .sponsor-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .sponsor-benefits {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }
}
.sponsor-benefits {
  margin-top: 10px; /* lower this (try 20px–50px) */
}




/* //////VENDOR PAGE////// */

body {
  margin: 0;
  color: white;
  font-family: Montserrat, sans-serif;
  padding-top: 64px;
}
.vendor-page {
  min-height: 100vh;
  width: 100%;

  background:
    
    url("logos/bg.jpg") center top / cover no-repeat;

  background-attachment: scroll; /* IMPORTANT for mobile */
}

.vendor-page .top-area {
  display: flex;
  justify-content: center;
  text-align: center;
}

.vendor-page .left {
  max-width: 700px;
  margin: 0 auto;
}

.vendor-page h1 {
  text-align: center;
}

.vendor-page .left {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* FORM CONTAINER */
.vendor-form {
  margin-top: 40px;
	margin-bottom: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* GOOGLE FORM */
.vendor-form iframe {
  width: 100%;
  max-width: 900px;
  height: 1400px;
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}


.payment-note {
  text-align: center;
  margin-bottom: 12px; /* tighter to button */
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem; /* smaller */
  letter-spacing: 0.5px;
}
.vendor-payment {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.pay-btn {
  display: block;
  width: 650px;            /* strong presence */
  max-width: 95%;          /* still responsive */
  margin: 0 auto;

  padding: 28px 0;         /* taller button */
  font-size: 1.6rem;       /* bigger text */
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;

  color: #fff;
  background: linear-gradient(135deg, #2ee66b, #00b84d);

  border-radius: 80px;
  text-decoration: none;

  box-shadow: 0 20px 60px rgba(0, 184, 77, 0.5);
  transition: all 0.25s ease;
}

.pay-btn:hover {
  transform: translateY(-5px) scale(1.04);

  background: linear-gradient(135deg, #38ff7a, #00cc55);

  box-shadow: 0 25px 70px rgba(0, 204, 85, 0.7);
}
.vendor-title {
  display: block;
  width: 100%;
  text-align: center;

  white-space: nowrap;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 2px;

  margin: 0 auto;
}

/*////MOBILE////*/

@media (max-width: 768px) {

  html,
  body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background:
      linear-gradient(
        to bottom,
        rgba(3,18,45,.86),
        rgba(3,18,45,.92),
        #000 100%
      ),
      url("logos/bg.jpg") center top / cover no-repeat fixed;
  }

  header,
  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .navbar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: hidden;
  }

  .logo,
  .navbar .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo img,
  .navbar img {
    max-width: 220px;
    max-height: 42px;
    width: auto;
    height: auto;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .nav-links .btn,
  .nav-links a.btn,
  .sponsor-btn,
  .vendor-btn {
    padding: 8px 13px;
    font-size: 0.65rem;
    border-radius: 30px;
  }

  section,
  .hero,
  .hero-content,
  .sponsor-hero-page,
  .vendor-page {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

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

@media (max-width: 768px) {

  html,
  body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;
  }

  body {
    background:
      linear-gradient(rgba(3,18,45,.86), rgba(3,18,45,.92)),
      url("logos/bg.jpg") center top / cover no-repeat fixed;
  }

  .navbar {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .logo,
  .logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo img,
  .navbar img {
    max-width: 230px;
    max-height: 45px;
    height: auto;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-links a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 10px 8px;
    white-space: normal;
  }

  .nav-links a.btn,
  .nav-links .btn,
  .sponsor-btn,
  .vendor-btn {
    width: 100%;
    max-width: 100%;
    padding: 11px 8px;
    font-size: 0.7rem;
    border-radius: 40px;
    white-space: normal;
  }

  .hero,
  .hero-content,
  .sponsor-hero-page,
  .vendor-page {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

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


.sponsor-hero-page {
  min-height: 100vh;
  background:
   
    url("logos/bg.jpg") center top / cover no-repeat;
}
	
/* FORCE SAME NAV ON SPONSOR + VENDOR */
.site-header {
  height: 76px;
  width: 100%;
  background: #020b18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logos img {
  height: 42px;
  width: auto;
  display: block;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .95rem;
}

.site-header nav .nav-cta {
  background: #26cc4f;
  color: #000;
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 900;
  letter-spacing: 2px;
}

body {
  padding-top: 76px;
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
    padding: 0 14px;
  }

  .brand-logos {
    gap: 8px;
  }

  .brand-logos img {
    height: 28px;
  }

  .site-header nav {
    gap: 10px;
  }

  .site-header nav a {
    font-size: .62rem;
    letter-spacing: 1px;
  }

  .site-header nav .nav-cta {
    padding: 9px 13px;
    font-size: .62rem;
    border-radius: 30px;
    white-space: nowrap;
  }

  body {
    padding-top: 64px;
  }
}

@media (max-width: 768px) {

  .sponsor-hero-page {
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }

  .sponsor-hero-page .hero-content {
    margin-bottom: 0 !important;
  }

  .sponsor-hero-page .cta-row,
  .sponsor-hero-page .hero-buttons {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .sponsor-card-section,
  .sponsor-info-section,
  .sponsor-opportunities,
  .sponsor-cards {
    margin-top: 35px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {

  .sponsor-hero-page {
    min-height: auto !important;   /* remove forced tall hero */
    padding-bottom: 20px !important;
  }

  .sponsor-hero-page .hero-content {
    margin-bottom: 0 !important;
  }

  /* tighten space under the button */
  .sponsor-hero-page .hero-content a,
  .sponsor-hero-page .hero-content .pay-btn,
  .sponsor-hero-page .hero-content .cta-btn {
    margin-bottom: 10px !important;
  }

  /* pull next section up */
  .sponsor-cards,
  .sponsor-info-section,
  .sponsor-opportunities {
    margin-top: 20px !important;
  }
}