:root {
  --orange-bg: url("assets/T_stripes_pattern.png");
  --blue-bg: url("assets/T_stripes_pattern2.png");
  --font-title: "Bangers", cursive;
  --font-body: "Boogaloo", cursive;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: white;
  font-size: 2rem;
  scroll-behavior: smooth;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;

  img {
    filter: drop-shadow(5px 5px 0px #000000);
    max-width: 500px;
    height: auto;
    margin-bottom: 10px;
  }

  .logo {
    max-width: min(500px, 100%);
  }

  @media (max-width: 1082px) {
    .hero {
      display: none;
    }
  }
}

@media (min-width: 700px) {
    .features:nth-child(3) {
      flex-direction: row-reverse;
    }
  .features:nth-child(5) {
      flex-direction: row-reverse;
    }
  }

.video-header {
  position: relative;
  height: 40vh;
  overflow: hidden;

  .myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    filter: brightness(0.5) blur(10px);
  }
}

.button_demo {
  filter: drop-shadow(5px 5px 0px #000000);
  background: url("assets/button.png") no-repeat center center/cover;
  color: white;

  margin-top: 50px;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--font-title);
  justify-content: center;
  text-align:center;
  text-decoration: none;
  display: inline-flex;
  transition: all 0.3s ease;
  width: 300px;
  height: 75px;
  line-height: 75px;
  &:hover {
    background: url("assets/button_hover.png") no-repeat center center/cover;
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
  }
}

.social_links {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;

  background-color: #0000009a;
  border-radius: 25px;

  max-width: fit-content;
}

.content-section {
  background-size: cover;
  background-repeat: repeat;
  &.blue {
    background-image: var(--blue-bg);
  }
  &.orange {
    background-image: var(--orange-bg);
  }
}

.trailer-description {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.trailer {
  width: 560px;
  height: 100%;

  iframe {
    max-width: 100%;
    width: 560px;
    height: 315px;
    border:none;
    border-radius: 10px;
  }
}

.description {
  max-width: 650px;
  height: 100%;

  h2 {
    font-size: 2.15rem;
  }
}

.description p {
  font-size: 1.5rem;
  padding: 30px;
  background-color: #0000009a;
  border-radius: 25px;
  text-align: justify;
}

.features {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;

}

.features-video {
  video {
    max-width: 100%;
    width: 400px;
    height: 100%;
    border:none;
    border-radius: 25px;
  }
}

.features-description {
  max-width: 500px;
  height: 100%;
  padding: 30px;
  background-color: #0000009a;
  border-radius: 25px;
  

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1.5rem;
    text-align: justify;
  }
}


.email-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 50px;
}

.email-subscription p {
  max-width: 650px;
  height: 100%;

  display: inline-flex;

  font-size: 1.5rem;
  padding: 30px;
  background-color: #0000009a;
  border-radius: 25px;
  margin-bottom: 0px;
}

#email {
  margin-top: 20px;
  margin-bottom: 50px;
  border-radius: 25px;
  padding: 10px;
  font-size: 1.5rem;
  width: 300px;
  border: none;
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-body);
}

#subcribe {
  margin-top: 20px;
  padding: 10px 60px;
  font-size: 1.5rem;
  border: none;
  filter: drop-shadow(5px 5px 0px #000000);
  background: url("assets/button.png") no-repeat center center/cover;
  color: white;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;

  &:hover {
    background: url("assets/button_hover.png") no-repeat center center/cover;
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
  }
}

h2 {
  filter: drop-shadow(3px 3px 0px #0000008e);
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 30px;
  margin-top: 0px;
  letter-spacing: 1.2px;
}

ul {
  list-style: none;
  padding: 0;

  li {
    margin: 10px 0;
    font-size: 1.2rem;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;

  img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    cursor: zoom-in;
    transition: all 0.3s ease;

    &:hover {
      scale: 1.2;
      transition: all 0.3s ease;
    }
  }
}

.social_icon {
  padding: 20px 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;

  background: none;

  &:hover {
    transform: scale(1.5);
    transition: all 0.2s ease;
  }
}




