.landing-page {
  background: #000000;
  color: #ffffff;
}

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


.landing-hero {
  background-image: url("../images/backgrounds/landing-background.svg");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 6rem 0 22rem;
  position: relative;
  overflow: visible;
}

.landing-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 20%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.62) 70%,
    rgba(0, 0, 0, 0.85) 88%,
    #000000 100%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

.landing-logo {
  width: 170px;
  margin: 0 auto;
}

.landing-hero h1 {
  font-size: 4rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  color: #111111;
}

.hero-text {
  max-width: 860px;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d1d1d;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.landing-btn {
  display: inline-block;
  min-width: 165px;
  text-align: center;
  background: #111111;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 14px;
  padding: 0.7rem 1.2rem;
  font-family: 'K2D', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

/* =========================
   UPCOMING EVENTS
========================= */

.landing-events {
  background: transparent;
  padding: 0 0 4rem;
  margin-top: -160px;
  position: relative;
  z-index: 2;
}

.landing-events .container {
  position: relative;
}

.landing-events h2,
.how-it-works h2,
.landing-cta h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}

.landing-events h2 {
  margin-bottom: 1.2rem;
}

.landing-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.landing-event-card {
  background: #a9c8f5;
  color: #111111;
  border: 3px solid #2a2a2a;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.15);
}

.landing-event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.landing-event-info {
  padding: 0.75rem 0.85rem 0.95rem;
}

.landing-event-info h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
  text-transform: none;
  color: #111111;
}

.landing-event-info p {
  font-size: 0.78rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.landing-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  font-weight: 600;
}

/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
  background: #000000;
  padding: 1rem 0 4rem;
  text-align: center;
}

.how-subhead {
  font-size: 1rem;
  margin-bottom: 2.2rem;
  color: #ffffff;
}

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

.how-card {
  max-width: 260px;
  margin: 0 auto;
}

.how-icon {
  width: 85px;
  height: 85px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.how-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.how-card h3 {
  font-size: 1.15rem;
  text-transform: none;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.how-card p {
  font-size: 0.95rem;
  line-height: 1.35;
  color: #ffffff;
}

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

.landing-cta {
  background: #000000;
  padding: 0 0 4.5rem;
}

.cta-box {
  background: #a9c8f5;
  color: #111111;
  border-radius: 24px;
  padding: 2.3rem 2rem;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.15);
}

.cta-box h2 {
  color: #111111;
  margin-bottom: 0.65rem;
}

.cta-box p {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #111111;
}

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

@media (max-width: 1000px) {
  .landing-hero {
    min-height: auto;
    padding: 4rem 0 14rem;
  }

  .landing-hero h1 {
    font-size: 3.2rem;
  }

  .landing-events {
    margin-top: -90px;
  }

  .landing-event-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .landing-event-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .how-card {
    max-width: 360px;
  }
}

@media (max-width: 700px) {
  .landing-hero {
    min-height: auto;
    padding: 3rem 0 9rem;
  }

  .landing-hero::after {
    height: 150px;
  }

  .landing-logo {
    width: 140px;
  }

  .landing-hero h1 {
    font-size: 2.4rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .landing-events {
    margin-top: -45px;
  }

  .landing-events h2,
  .how-it-works h2,
  .landing-cta h2 {
    font-size: 2rem;
  }

  .cta-box p {
    font-size: 1.15rem;
  }

  .hero-buttons,
  .cta-buttons {
    gap: 1rem;
  }

  .landing-btn {
    width: 100%;
    max-width: 220px;
  }
}