/**********************************/
/*HEADER*/
/**********************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 6.2rem;
}

/**********************************/
/*NAVIGATION*/
/**********************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  text-transform: uppercase;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #ff0000;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #ccc;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #333;
  background-color: #ccc;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #111;
  color: red;
  box-shadow: 0rem 0rem 5rem rgba(255, 0, 0, 0.8);
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #ccc;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  box-shadow: 0 1.2rem 4.4rem rgba(255, 0, 0, 0.35);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**********************************/
/*HERO SECTION*/
/**********************************/

.section-hero {
  background-color: #111;
  position: relative;
  padding: 4.8rem 0 9.6rem 0;
  overflow: hidden;
  height: 96rem;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #ccc;
  text-shadow: -1px -1px 0 #000, /* red outline */ 1px -1px 0 #000,
    -1px 1px 0 #000, 1px 1px 0 #000, 0px 0px 1px #000;
}

.info-grid {
  column-gap: 1.2rem;
  padding: 0 16rem;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/**********************************/
/*FEATURED SECTION*/
/**********************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #111;
}

.logos {
  display: flex;
  justify-content: center;
}

.logos img {
  height: 6.4rem;
  filter: saturate(0);
  opacity: 20%;
}

/**********************************/
/*ABOUT US SECTION*/
/**********************************/

.section-about {
  padding: 4.2rem 0 9.6rem 0;
}

.about-us-description {
  font-size: 2rem;
  line-height: 1.6;
}

/**********************************/
/*FEATURES SECTION*/
/**********************************/

.section-features {
  padding: 9.6rem 0;
}

.feature-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.2rem;
}

.feature-description {
  font-size: 2rem;
  line-height: 1.8;
}

.feature-img-slot {
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
}

.feature-img {
  display: block;
  width: 70%;
  margin: 0 auto;
  border-radius: 20%;
  box-shadow: 0rem 0rem 14rem rgba(255, 0, 0, 0.6);
  border: 2px solid;
  border-color: #111;
}

/**********************************/
/*GAMES SECTION*/
/**********************************/

.section-games {
  padding: 9.6rem 0;
  background-image: linear-gradient(to bottom, #fff, #111);
  text-align: center;
}

.game-link {
  overflow: hidden;
  border-radius: 3rem;
  box-shadow: inset 0rem 0rem 12rem rgba(255, 0, 0, 0.6);
}

.game-slot {
  height: 100%;
  align-self: center;
}

.event-title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
  justify-items: center;
  padding: 1.6rem 0;
  text-decoration: none;
}

.game-cover {
  box-shadow: inset 0rem 0rem 10rem rgba(255, 204, 204, 0.6);
  margin: 1.6rem;
  overflow: hidden;
  border-radius: 2rem;
}

.event-img {
  display: block;
  width: 90%;
  margin: 0 auto;
  transition: all 0.5s;
}

.event-img:hover {
  transform: scale(1.2);
}

.game--unique {
  position: relative;
}

.game--unique::after {
  content: "Unique Game";
  position: absolute;
  top: 8%;
  right: -14%;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  color: yellow;
  background-color: red;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.game--empty {
  position: relative;
}

.game--empty::after {
  content: "Currently available";
  position: absolute;
  top: 15%;
  right: -14%;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  color: yellow;
  background-color: green;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.event-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

/**********************************/
/*CTA SECTION*/
/**********************************/

.section-cta {
  padding: 4.8rem 0 12.8rem 0;
  background-color: #111;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  background-image: linear-gradient(to bottom, #555, #ff0000);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #ccc;
}

.cta .heading-secondary {
  color: #111;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(235, 78, 78, 0.3),
      rgba(230, 34, 34, 0.3)
    ),
    url("../img/logos/icon3.png");
  background-size: 100%;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  color: #111;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  background-color: #ccc;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #888;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(255, 239, 225, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  background-color: #111;
  padding: 12.8rem 0;
  border-top: 2px solid #ff0000;
}

.grid--footer {
  grid-template-columns: 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
  height: 8rem;
}

.social-links {
  padding: 0 1.4rem;
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  color: #cc0000;
  height: 3.2rem;
  width: 3.2rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #ff0000;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #ff0000;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #ff0000;
}
