/* ! base css start */
@import url("https://fonts.googleapis.com/css2?family=Electrolize&display=swap");
* {
  margin: 0;
  text-decoration: none;
}

body {
  font-family: "Electrolize", sans-serif;
}
.container {
  background-color: black;
  color: white;
}
/* ! base css end */
/* ! navbar css start */
.navbar {
  height: 60px;
  background-color: black;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1;
}

.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 50px;
}
.logo {
  color: rgb(255, 70, 70);
  font-size: 30px;
}

.menu-list {
  display: flex;
  list-style: none;
  column-gap: 30px;
  padding: 0;
}

.menu-list-item {
  cursor: pointer;
}

.menu-list-item a {
  color: white;
}

.menu-list-item:hover {
  font-weight: bold;
}

.menu-list-item.active {
  font-weight: bold;
}
.profile-container {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.profile-picture {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}
.profile-text-container {
  display: flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
  cursor: pointer;
}

.toggle {
  width: 40px;
  background-color: white;
  height: 23px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.toggle-icon {
  color: goldenrod;
}

.toggle-ball {
  width: 18px;
  height: 18px;
  background-color: black;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 1px;
  transition: 0.5s ease all;
}
/* ! navbar css end */
/* ! sidebar css start */
.sidebar {
  background-color: black;
  color: white;
  height: 100%;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  row-gap: 2.5rem;
  position: fixed;
  top: 0;
}

.sidebar i {
  font-size: 20px;
  color: white;
  cursor: pointer;
}

/* ! sidebar css end */

/* ! featured content start */
.content-wrapper {
  margin-left: 90px;
}
.featured-content {
  background: url(/img/narcos.jpg);
  padding: 50px;
  height: calc(100vh - 160px);
  background-size: cover;
  position: relative;
}

.pabloesc {
  width: 100%;
  position: absolute;
  top: 8%;
  left: 0%;
  right: 0;
  display: none;
}

.pabloesc video {
  width: 100%;
  height: 700px;
}

.featured-tittle {
  width: 500px;
}

.featured-desc {
  width: 500px;
  color: white;
  padding: 10px;
  margin: 20px 0;
}

.featured-buttons {
  display: flex;
  gap: 20px;
  margin-left: 10px;
  flex-wrap: wrap;
}

.featured-buttons button {
  padding: 10px 25px;
  border-radius: 2px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  font-size: 16px;
  font-weight: bold;
}

.featured-buttons .info-button {
  background-color: rgb(145, 142, 142, 0.5);
  color: white;
}

/* ! featured content end */

/* ! filter start  */
.movie-list-filter {
  margin: 20px 0 20px 50px;
  padding: 20px;
}

.movie-list-filter select {
  background-color: black;
  color: white;
  padding: 7px 0px;
  width: 125px;
}
/* ! filter end  */

/* ! movie list start  */
.movie-list-container {
  margin-left: 70px;
}

.movie-list {
  list-style: none;
  padding: 0;
  height: 300px;
  display: flex;
  align-items: center;
  column-gap: 30px;
  transform: translateX(0);
  transition: 1s all ease-in-out;
}

.movie-list-wrapper {
  overflow: hidden;
  position: relative;
}
.movie-item {
  position: relative;
}

.movie-item:hover .movie-title,
.movie-item:hover .movie-item-buttons {
  opacity: 1;
}

.movie-item:hover .movie-item-img {
  transform: scale(1.2);
  margin: 0 30px;
  opacity: 0.5;
}

.movie-item-img {
  width: 270px;
  height: 200px;
  object-fit: cover;
  transition: 1s all ease-in-out;
}
.movie-title {
  background-color: rgb(40, 40, 40, 0.4);
  padding: 0 10px;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: 10%;
  left: 50px;
  opacity: 0;
}

.movie-item-buttons {
  background-color: rgb(40, 40, 40, 0.4);
  padding: 10px;
  font-weight: bold;
  position: absolute;
  bottom: 10%;
  left: 50px;
  display: flex;
  column-gap: 20px;
  opacity: 0;
  transition: 1s all ease-in-out;
}

.movie-item-buttons i {
  cursor: pointer;
  opacity: 0.5;
  font-size: 20px;
  transition: 0.5s all ease;
}

.movie-item-buttons i:hover {
  opacity: 1;
}

.arrow {
  width: 100px;
  display: flex;
  font-size: 120px;
  position: absolute;
  right: 0;
  top: 100px;
  opacity: 0.5;
  transition: 0.5s ease all;
  cursor: pointer;
}

.arrow:hover {
  opacity: 1;
}
/* ! movie list end  */

/* ! footer  start  */
footer {
  width: 100%;
  height: 100px;
  text-align: center;
}

footer h3 {
  padding: 30px;
  font-family: "Electrolize", sans-serif;
  font-weight: 500;
}
/* ! footer  end  */

/* ! dark mode start  */
.container.active {
  background-color: white;
}

.navbar.active {
  background-color: white;
  color: black;
}

.sidebar.active {
  background-color: white;
}

.sidebar i.active {
  color: black;
}
.movie-list-tittle.active {
  color: black;
}

.toggle.active {
  background-color: black;
}

.toggle-ball.active {
  background-color: white;
  transform: translateX(-20px);
}

.movie-list-filter select.active {
  background-color: white;
  color: black;
}
/* ! darkd\ mode end  */

/* ! responsive   */
@media only screen and (max-width: 800px) {
  .menu-list-item {
    cursor: pointer;
    font-size: 16px;
  }

  .menu-list {
    display: flex;
    list-style: none;
    column-gap: 12px;
    padding: 0;
    padding-top: 5px;
  }

  .logo-wrapper {
    display: none;
  }

  .profile-container {
    display: none;
  }

  .featured-desc {
    display: none;
  }

  .featured-buttons {
    display: none;
  }

  .featured-tittle {
    margin-top: 10%;
    width: 150px;
  }

  .sidebar {
    z-index: 1;
  }

  .pabloesc {
    display: none;
  }

  .pabloesc video {
    display: none;
  }

  .featured-content {
    width: 95%;
    background: url(/img/narcos.jpg);
    padding: 0px;
    height: calc(43vh - 160px);
    background-size: cover;
    position: relative;
  }
}
/* ! responsive   */
