/* Custom properties */
:root {
  --white: #fff;
  --grey-medium: #999;
  --yellow-ligth: #eeeee1;
  --blue-ligth: #e1e7f1;
  --blue-grey: #11212c;
  --gold: #7c765f;
  --violet: #633d56;
}

/* General rules */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  background-color: var(--yellow-ligth);
  overflow-x: hidden;
}

p {
  margin-bottom: 20px;
}

/* Typo */
.title-section {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 10px;
  margin-bottom: 30px;
}

.sala-city {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-grey);
  padding-left: 10px;
  margin-bottom: 10px;
}

.sala-city::before {
  content: "";
  display: block;
  position: absolute;
  margin-left: -10px;
  width: 3px;
  height: 23px;
  background-color: var(--blue-grey);
  z-index: 100;
}

.title-estado {
  font-size: 2rem;
  font-weight: 300;
  color: var(--blue-grey);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.salas-name a {
  color: var(--blue-ligth);
  font-size: 20px;
  line-height: 35px;
}

.salas-name a:hover {
  color: var(--white);
}

.quote {
  font-style: italic;
  font-size: 35px;
  line-height: 50px;
}

.character {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--gold);
  text-transform: uppercase;
}

.actor {
  font-weight: 700;
  line-height: 25px;
}

/* Navbar */
.hero .navbar {
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  height: 100px;
}

.navbar-burger {
  color: var(--white);
}

.navbar .navbar-item {
  font-weight: 700;
  color: var(--white);
}

.navbar .navbar-item:hover {
  color: var(--blue-grey);
}

a.navbar-item:hover {
  background-color: transparent;
}

a.navbar-item:focus {
  background-color: transparent;
  color: var(--blue-grey);
}

.navbar-brand a {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
}

.navbar.scrolled {
  background-color: var(--gold);
  height: 52px;
}

.highlighted {
  color: var(--white);
}

/* Hero section */
[data-slides] {
  background: url(../imgs/lucia_max_y_leo_juntos_los_lobos_movie.jpg) no-repeat
    center center;
  background-size: cover;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 4rem 0.75rem 0.75rem;
}

.logo-loslobos {
  width: 60%;
}

.hero-content p {
  margin: 20px 0;
}

.logo-tagline {
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
}

.logo-tagline span {
  font-weight: 700;
}

.btn-trailer {
  padding: 20px 30px;
  background: rgba(17, 33, 44, 0.3);
  border: 1px solid var(--white);
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin: 20px 0;
}

.btn-trailer:hover {
  background: #7c765f;
  color: var(--white);
}

.date {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hbo-button {
  width: 80px;
  transition: transform 0.3s;
}

.hbo-button:hover {
  transform: scale(1.1) perspective(0px);
}

.premios {
  margin-bottom: 50px;
}

.premios ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  max-width: 1344px;
  margin: auto;
}

.premios li {
  padding: 0 10px;
}

.premios img {
  width: 130px;
}

/* Galería section */
.galeria {
  padding: 0;
}

.img-galeria {
  margin-bottom: 100px;
}

.img-galeria:last-child {
  margin-bottom: 0;
}

.img-galeria img {
  width: 80%;
  height: auto;
}

.img-galeria-der {
  text-align: right;
}

.manada {
  position: absolute;
  margin-left: 5%;
  margin-top: -350px;
  width: 350px;
}

/* Quotes Kishi */
.lobos-montana img {
  position: absolute;
}

/* Quotes section */
.quotes {
  position: relative;
}

.slide {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: hidden;
}

.slide-1 {
  background-image: url(../imgs/quotes_bg_01_los_lobos_movie.jpg);
}
.slide-2 {
  background-image: url(../imgs/quotes_bg_02_los_lobos_movie.jpg);
}
.slide-3 {
  background-image: url(../imgs/quotes_bg_03_los_lobos_movie.jpg);
}
.slide-4 {
  background-image: url(../imgs/quotes_bg_04_los_lobos_movie.jpg);
}

.caption {
  width: 100%;
  position: absolute;
  padding: 0 12%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  text-align: center;
}

.caption img {
  margin-top: 30px;
  width: 120px;
  height: auto;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
  color: var(--grey-medium);
}

.arrow:hover {
  color: var(--white);
}

.l {
  left: 50px;
}

.r {
  right: 50px;
}

/* Salas section */
.salas {
  background-color: var(--gold);
}

.salas .columns {
  margin-bottom: 50px;
}

.salas .title-section {
  color: var(--blue-grey);
}

/* Créditos section */
.creditos {
  padding: 9rem 0 !important;
}

.creditos p {
  margin-bottom: 0;
}

.lobo-max,
.lobo-leo,
.nubes {
  position: absolute;
}

.lobo-max {
  left: 150px;
  margin-top: -450px;
}

.lobo-leo {
  right: 150px;
  margin-top: -400px;
}

.nubes {
  margin-top: -300px;
}

.nubes img {
  width: 100vw;
}

.crew {
  margin-top: 100px;
  margin-bottom: 100px;
}

.crew .character {
  text-align: right;
}

.sponsors {
  padding-bottom: 70px;
}

/* Premios */
.premios-section {
  position: relative;
  background-color: var(--blue-grey);
}

.premios-section .container {
  margin-top: 0;
}

.lobos-gif {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -175px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gold);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
  top: -25px;
  transform: translateX(-6%);
}

/* Footer */
.footer {
  background-color: var(--gold);
  color: var(--white);
}

.footer a {
  color: var(--blue-ligth);
}

.footer a:hover {
  color: var(--blue-grey);
}

/* Queries Tablet Horizontal y Desktops viejos */
@media only screen and (max-width: 1024px) {
  /* Créditos */
  .creditos .title-section {
    padding-left: 30px;
  }

  .lobo-max {
    left: 30px;
    margin-top: -350px;
  }

  .lobo-max img {
    width: 130px;
  }

  .lobo-leo {
    right: 0;
    margin-top: -350px;
  }

  .lobo-leo img {
    width: 120px;
  }

  .nubes {
    margin-top: -250px;
  }

  /* Sponsors */
  .sponsors {
    padding-bottom: 50px;
  }
}

/* Queries Tablet */
@media only screen and (max-width: 768px) {
  /* Navbar */
  .hero .navbar {
    background-color: none;
    height: 52px;
  }

  .navbar-brand {
    color: var(--white);
  }

  .navbar-menu {
    background-color: var(--gold);
  }

  .navbar-end {
    text-align: center;
  }

  .navbar-end .navbar-item {
    font-size: 20px;
    line-height: 40px;
  }

  /* Sinopsis */
  .sinopsis {
    width: 80%;
    margin: auto;
  }

  /* Quote Kishi */
  .quote-kishi {
    padding-right: 70px;
    padding-left: 70px;
    padding-bottom: 400px;
  }

  .lobos-montana img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-left: -150px;
  }

  /* Créditos */
  .actores {
    padding: 0 150px;
  }

  /* Sponsors */
  .sponsors .column {
    padding: 1rem 4rem;
  }

  /* Premios */
  .premios-section .container {
    margin-top: 130px;
  }

  .lobos-gif {
    position: absolute;
    width: 250px;
    height: 250px;
    top: -125px;
  }

  .circle {
    width: 280px;
    height: 280px;
    top: -15px;
    transform: translateX(-5%);
  }

  .premios-section .column {
    padding: 1rem 4rem;
  }
}

/* Queries Cel */
@media only screen and (max-width: 414px) {
  /* Hero section */
  .hero-content p {
    margin: 10px 0;
  }

  .date {
    font-size: 20px;
  }

  .logo-tagline {
    font-size: 19px;
    line-height: 22px;
  }

  .premios .award-hidden {
    display: none;
  }

  /* Sinopsis */
  .sinopsis {
    width: 100%;
  }

  /* Quote Kishi */
  .quote-kishi {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 250px;
  }

  .quote {
    font-style: italic;
    font-size: 25px;
    line-height: 35px;
  }

  /* Galería */
  .img-galeria {
    margin-bottom: 70px;
  }

  .img-galeria img {
    width: 100%;
  }

  .manada {
    margin-left: 0;
    margin-top: -150px;
    width: 180px;
  }

  /* Quote Kishi */
  .lobos-montana img {
    margin-left: -100px;
  }

  /* Quotes Section */
  .quotes .caption .quote {
    font-size: 20px;
    line-height: 30px;
  }

  .l {
    left: 10px;
  }

  .r {
    right: 10px;
  }

  /* Créditos */
  .actores {
    flex-direction: column;
    padding: 0 30px;
  }

  .lobo-max {
    left: 10px;
    margin-top: -320px;
  }

  .lobo-leo {
    right: 0;
    margin-top: -300px;
  }

  .lobo-max img {
    width: 70px;
  }

  .lobo-leo img {
    width: 70px;
  }

  .nubes {
    margin-top: -250px;
  }

  .crew {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 0 20px;
  }

  .character {
    font-size: 17px;
    line-height: 20px;
  }

  /* Sponsors */
  .sponsors .column {
    padding: 1rem;
  }

  /* Premios */
  .premios-section .column {
    padding: 1rem;
  }
}

@media only screen and (max-width: 320px) {
  /* Typo */
  .sala-city {
    font-size: 13px;
  }

  .salas-name a {
    font-size: 16px;
    line-height: 30px;
  }

  /* Hero section */
  .hero-body {
    padding: 2rem 1.5rem;
  }

  .premios {
    margin-bottom: 10px;
  }

  .premios img {
    max-width: 100px;
  }

  /* Créditos */
  .actores {
    flex-direction: column;
    padding: 0 30px;
  }
}
