* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 82px;
}

html {
  background-color: black;
}

body {
  line-height: 1.5;
  background: linear-gradient(rgba(17, 17, 17, 0.97), rgba(17, 17, 17, 0.97)), url(../assets/identity/DailyFreeCaseFavicon.png);
  background-size: 5%;
  background-repeat: repeat;
}

/* ------------------------ Typography ------------------------ */
h1 {
  color: white;
  letter-spacing: 0.5px;
  font-weight: bold;
}
h1 span {
  color: #f6c639;
}

h2 {
  position: relative;
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* ------------------------ Header ------------------------ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgb(44, 44, 44);
  background-color: rgb(20, 20, 20);
}
header .header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
header .header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
header nav a {
  text-decoration: none;
  color: white;
}
header nav .discord {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #5865f2;
  color: white;
  padding: 8px 12px;
  gap: 7px;
  border-radius: 10px;
}
header nav .discord img {
  font-size: 0;
}

#menu-open,
#menu-close {
  display: none;
  cursor: pointer;
}

#menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ------------------------ Hero ------------------------ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 20px;
  padding-bottom: 50px;
  margin-bottom: 20px;
  color: white;
}
.hero p {
  font-size: 24px;
  line-height: 1;
}
.hero h1 {
  font-size: 70px;
  line-height: 1.3;
}

/* ------------------------ Section ------------------------ */
section {
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}

/* ------------------------ Cards ------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 1;
}
.cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  padding: 20px;
  width: 100%;
  background-color: rgb(19, 19, 19);
  border-radius: 4px;
  overflow: hidden;
  color: white;
  border: 1px solid #f6c639;
  transition: 0.5s;
  box-shadow: 0px 0px 200px rgba(255, 255, 255, 0);
}
.cards .card:hover, .cards .card.highlight {
  box-shadow: 0px 0px 200px rgba(246, 198, 57, 0.6705882353);
  background-color: #f6c639;
  color: black;
}
.cards .card:hover a, .cards .card.highlight a {
  background-color: black;
  color: #f6c639;
}
.cards .card:hover img, .cards .card.highlight img {
  filter: brightness(0);
}
.cards .card img {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
.cards .card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #f6c639;
  color: black;
  text-decoration: none;
  width: 100%;
  border-radius: 4px;
  transition: 0.5s;
}
.cards .card .card-description {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 20px 0;
  cursor: default;
}

/* ------------------------ Footer ------------------------ */
footer {
  border-top: 1px solid rgb(44, 44, 44);
  background-color: rgb(20, 20, 20);
  color: white;
  margin-top: 50px;
  padding: 20px 0;
}
footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 50px;
}
footer .footer-content .footer-content-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .footer-content .footer-content-item h4 {
  color: #f6c639;
  font-size: 12px;
  font-family: "Horizon";
  margin-bottom: 8px;
}
footer .footer-content .footer-content-item a {
  text-decoration: none;
  color: white;
}
footer .footer-logo {
  max-width: 320px;
  width: 100%;
}
footer .footer-desc {
  max-width: 500px;
}
footer .social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
}
footer .copyright {
  text-align: center;
  font-size: 14px;
}

/* ------------------------ Media Queries ------------------------ */
@media only screen and (max-width: 992px) {
  * {
    scroll-margin-top: 70px;
  }
  body {
    background-size: 10%;
  }
  header nav {
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    gap: 15px;
    background-color: rgb(20, 20, 20);
    transition: 0.3s;
  }
  header nav.active {
    opacity: 1;
    pointer-events: all;
  }
  header .header-logo img {
    height: 30px;
    width: auto;
  }
  #menu-open,
  #menu-close {
    display: block;
  }
  .hero h1 {
    font-size: 50px;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  footer {
    margin-top: 0px;
  }
  footer .footer-content {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .hero h1 {
    font-size: 35px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 500px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 5px;
  }
  .hero h1 {
    font-size: 7vw;
  }
  .hero p {
    font-size: 4.5vw;
  }
  h2 {
    font-size: 14px;
    text-align: center;
  }
  body {
    background-size: 20%;
  }
}/*# sourceMappingURL=styles.css.map */