@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: #000;
  color: #fff;
  font-family: "Palatino Linotype", Palatino, serif;
}

/* HERO */
.hero {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.glow-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.4rem;
  color: #ff3333;
  text-shadow: 0 0 12px rgba(255,0,0,0.9);
}

.countdown {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  margin-top: 8px;
}

.hero-sub {
  margin-top: 10px;
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Combined hero image */
.combined-image {
  position: relative;
  z-index: -1;
  transform: translatex(-20vw);
  width: 3000px;
  max-width: 150vw;
  height: 900px;
  margin: -520px auto 40px;
  background-image: url("images/combined.png");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: 10% center;
}

/* MAIN CONTENT */
main {
  position: relative;
  z-index: 0;
  padding: 80px 20px 160px;
}

.section {
  max-width: 800px;
  margin: 40px auto;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.section p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Socials */
.ig-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("images/ig.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ------------------------- */
/* MOBILE OVERRIDES          */
/* ------------------------- */

@media (max-width: 700px) {

  .hero {
    padding-top: 60px;
    padding-bottom: 20px;
  }

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

  .countdown {
    font-size: 1.4rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .combined-image {
    width: 140vw;
    max-width: none;
    height: 380px;
    margin: -160px auto 0px;
    background-size: 80%;
    background-position: -20% center;
    transform: translateX(0);
  }

  main {
    padding: 40px 16px 80px;
  }

  .section p {
    font-size: 1rem;
  }
}
