@import url("reset.css");
@import url("global.css");

.s-wrapper {
  display: flex;
  height: 100vh;
  flex-flow: row nowrap;
}

.s-wrapper .s-left-column {
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  padding-right: 50px;
  top: 0;
  left: 0;
  z-index: 1;
}

.s-wrapper .s-main-content {
  width: 100%;
  height: 100%;
  background-color: gray;
  padding-left: 130px;
}

nav {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

nav ul li {
  margin: 60px 0;
}

nav ul li:first-child {
  margin-top: 0;
}
nav ul li:last-child {
  margin-bottom: 0;
}

nav ul li a {
  color: #fff;
  border: solid 1px #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
}

nav ul {
  z-index: 1;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #fff;
  color: var(--primary-color);
}

nav .navigation__icon {
  position: absolute;
  top: -20px;
}

.s-wrapper .s-main-content__top {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.s-wrapper .s-main-content__bottom {
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pills ul {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.pills ul li {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  margin: 0 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pills ul li:first-child {
  margin-left: 0;
}

.s-wrapper .s-main-content__top .s-description {
  background-color: rgba(0, 0, 0, 0.7);
  max-width: 50%;
  padding: 20px;
  border-radius: 10px;
}

.s-wrapper .s-main-content__top .s-description {
  color: #fff;
  line-height: 170%;
}

.s-wrapper .s-main-content__top .s-description {
  margin-bottom: 20px;
}

a.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

a.link-button .icon {
  width: 32px;
  height: 32px;
  padding: 3px;
  background-color: var(--primary-color);
  border: solid 1px white;
  background-clip: content-box;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.link-button .icon .play-icon {
  border: solid 7px white;
  width: 0;
  height: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  margin-right: -7px;
}

a.link-button .label {
  margin-left: 10px;
}

.s-wrapper .s-main-content .s-links {
  padding: 20px;
  padding-left: 0;
}

.gallery {
  padding: 20px;
  padding-left: 0;
}

.gallery ul {
  display: flex;
  flex-direction: row;
}

.gallery ul li {
  margin-left: 25px;
}

.gallery ul li:first-child {
  margin-left: 0;
}

.gallery ul li a img {
  height: 150px ;
  width: 250px;
  border: solid 6px #fff;
  border-radius: 15px;
}

.gallery-nav {
  display: none;
}
.s-spiderman-01-01 {
  background-image: url(../images/spiderman-tobey/movie-01/background.png);
  background-size: cover;
}
.s-spiderman-01-02 {
  background-image: url(../images/spiderman-tobey/movie-02/background.png);
  background-size: cover;
}
.s-spiderman-01-03 {
  background-image: url(../images/spiderman-tobey/movie-03/background.png);
  background-size: cover;
}

.s-spiderman-02-01 {
  background-image: url(../images/spiderman-tom/movie-01/background.png);
  background-size: cover;
}
.s-spiderman-02-02 {
  background-image: url(../images/spiderman-tom/movie-02/background.png);
  background-size: cover;
}
.s-spiderman-02-03 {
  background-image: url(../images/spiderman-tom/movie-03/background.png);
  background-size: cover;
} 

.s-spiderman-03-01 {
  background-image: url(../images/spiderman-andrew/movie-01/background.png);
  background-size: cover;
}
.s-spiderman-03-02 {
  background-image: url(../images/spiderman-andrew/movie-02/background.jpg);
  background-size: cover;
}
/*  */
/*  */
/* minha tentativa de fazer responsivo no celular*/
@media (max-width: 1250px) {
  .s-wrapper .s-main-content__top {
    height: 72vh;
  }
  .gallery {
    position: relative;
    width: 100%;
    padding: 0;
  }

  .gallery ul {
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .gallery ul::-webkit-scrollbar {
    display: none;
  }

  .gallery ul li {
    min-width: 100%;
    margin-left: 0;
    margin-right: 0;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery ul li a img {
    max-width: 100%;
    height: auto;
  }

  .gallery-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }
}


  .s-wrapper .s-main-content .s-logo img {
    height: 6vh;
  }


@media (max-width: 816px) {
  .s-wrapper .s-main-content__top .s-description {
    max-width: 75%;
    font-size: 11px;
  }
  .s-wrapper .s-main-content .s-logo img {
    height: 2.4vh;
  }
  .s-wrapper .s-left-column {
    width: 65px;
  }
  .s-wrapper .s-main-content {
    padding-left: 85px;
  }
  .gallery ul li a {
    display: flex;
    justify-content: center;
  }
  .gallery ul li a img {
    max-width: 70%;
    height: auto;
  }
}

@media (max-width: 472px) {
  * {
    font-size: 12px;
  }
}
