* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #ffffff;
  background: #000000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Space Grotesk", sans-serif;
  transition: all;
  transition-duration: 300ms;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 80%;
  margin: 0 auto;
  border-left: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #c4c4c4;
}

nav img {
  display: block;
  width: 80px;
}

nav ul li {
  list-style-type: none;
}

nav > ul > li > a {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

nav > ul > li > a:hover {
  text-decoration: underline;
}

header {
  background: url("../Assets/Illustrations/Bathome1.png") right / cover
    no-repeat;
}

.intro {
  max-width: 400px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.intro h1 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
}

.arrow-down {
  display: block;
  width: 40px;
  margin: 20px auto 0px;
}

/* BUTTON */
.btn-group {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  width: 130px;
  background: linear-gradient(
    274deg,
    rgba(137, 0, 8, 0.6) 0%,
    rgba(252, 232, 216, 0.4) 100%
  );
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 5px;
  margin: 5px;
}

.btn:hover {
  background: linear-gradient(
    274deg,
    rgba(137, 0, 8) 0%,
    rgba(252, 232, 216) 100%
  );
}

section {
  padding: 0 15px;
}

section h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

section h2 + p {
  text-align: justify;
  margin-bottom: 30px;
}

/* CARD*/
.card {
  width: 100%;
  position: relative;
  cursor: pointer;
  max-width: 304px;
}

.card:hover {
  transform: scale(115%);
}

.card img {
  width: 100%;
  height: 100%;
}

.card-body {
  position: absolute;
  padding: 22px;
  width: 100%;
  bottom: 0;
  display: block;
  background-color: rgba(23, 20, 15, 1);
  opacity: 0.5;
}

.card:hover > .card-body {
  display: block;
}

.card-body-int {
  border-radius: 50px;
  background: linear-gradient(
    to left,
    rgba(137, 0, 8, 0.6),
    rgba(252, 232, 216, 0.4)
  );
}

.card h3,
.card p {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.card p {
  color: rgba(249, 212, 147, 1);
  margin-top: -10px;
}

.justice {
  display: block;
  margin: 0 calc(-20% - 2px);
}

.justice img {
  width: 100%;
}

.film-carousel {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
}

.carousel-slide {
  display: block;
  width: 25px;
}

.film {
  background: linear-gradient(
    214deg,
    rgba(25, 88, 125, 0.34) 6.73%,
    rgba(237, 222, 191, 0.34) 100.28%
  );
  display: flex;
  width: 420px;
  margin: 10px;
  flex-direction: column;
}

.film-detail {
  padding: 10px;
}

.film-poster {
  width: 100%;
}

.film-genre {
  color: #bcbbbd;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
}

.film .film-title {
  margin-bottom: 0;
  color: #f2f2f2;
  font-size: 0.8rem;
  font-family: "Rajdhani", sans-serif;
}

.film-note {
  font-size: 0.6rem;
}

.film-note span {
  color: #f8f184;
}

.film-synopsis {
  color: #f2f2f2;
  font-size: 0.55rem;
  line-height: 0.8rem;
}

form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

form > div {
  margin-bottom: 30px;
}

form h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f8f184;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #f8f184;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    274deg,
    rgba(137, 0, 8, 0.8) 0%,
    rgba(252, 232, 216, 0.6) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: linear-gradient(
    274deg,
    rgba(137, 0, 8) 0%,
    rgba(252, 232, 216) 100%
  );
  transform: translateY(-2px);
}

footer {
  background: linear-gradient(to top, #000000, rgba(25, 88, 125, 0.2));
  padding: 60px 20px;
  border-top: 1px solid #c4c4c4;
}

footer > div {
  max-width: 1200px;
  margin: 0 auto;
}

footer > div > div {
  text-align: center;
  margin-bottom: 30px;
}

footer img {
  max-width: 100px;
  height: auto;
  margin: 10px;
}

footer > div > div:last-child img {
  max-width: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

footer > div > div:last-child img:hover {
  transform: scale(1.2);
}

blockquote {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 40px;
  padding: 20px;
  border-left: 4px solid #f8f184;
  background: rgba(255, 255, 255, 0.05);
}

cite {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #bcbbbd;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  html,
  body {
    font-size: 22px;
    line-height: 28px;
  }

  header {
    background-position: center;
  }

  nav {
    padding: 30px 50px;
  }

  nav img {
    width: 100px;
  }

  .intro {
    max-width: 500px;
    margin-top: 50px;
    padding: 0;
  }

  .intro h1 {
    margin-top: 15px;
  }

  .arrow-down {
    width: 50px;
    margin-top: 100px;
  }

  .btn-group {
    margin-top: 24px;
  }

  .btn {
    width: 200px;
  }

  main section {
    margin-bottom: 30px;
    padding: 0 30px;
  }

  section h2 {
    margin-bottom: 24px;
  }

  section h2 + p {
    width: 90%;
    margin-bottom: 60px;
  }

  .section-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .carousel-slide {
    width: 30px;
  }

  .film {
    flex-direction: row;
    margin: 5px;
  }

  .film-poster {
    max-width: 155px;
  }
}

@media screen and (min-width: 992px) {
  nav {
    padding: 56px 90px 108px;
  }

  nav img {
    width: 121px;
  }

  .intro {
    max-width: 603px;
    margin-top: 200px;
  }

  .intro h1 {
    margin-top: 20px;
  }

  .arrow-down {
    width: 70px;
    margin-top: 245px;
  }

  .btn-group {
    margin: 48px;
  }

  .btn {
    width: 248px;
    padding: 20px;
    margin: 0 22.5px;
  }

  main section {
    padding: 0 82px;
    margin-bottom: 50px;
  }

  section h2 {
    margin-bottom: 42px;
  }

  section h2 + p {
    margin-bottom: 82px;
  }

  .justice {
    margin: 0 calc(-20% - 82px);
  }
}
