/* Body: */
#media-page {
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

/* Header/Navbar CSS: */
.navbar,
#navvy {
  height: 10vh;
  z-index: 3;
}

#navvy {
  background-color: deeppink;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  align-content: center;
  padding: 0;
}

#nav-ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 1.1rem;
}

#navbar-mobile-dropdown {
  background-image: linear-gradient(
    -45deg,
    yellow 25%,
    black 25%,
    black 50%,
    yellow 50%,
    yellow 75%,
    black 75%,
    black 100%
  );
  background-repeat: repeat;
}

.nav-link:hover .bi,
.nav-link:hover #guitar-icon,
.nav-link:hover #home-mobile-icon,
.nav-link:hover #home-icon,
.nav-link:hover #media-icon,
.nav-link:hover #about-icon,
.nav-link:hover #merch-icon {
  filter: brightness(79%);
}

svg#media-icon {
  margin-right: 0.5rem;
}

.nav-link:hover span, .active span{
  text-decoration: underline;
  text-underline-offset: 8px;
}

#home-mobile-icon {
  font-size: 1.3rem;
}

.nav-link > span {
  text-shadow: -1px -1px 0em #000;
  font-size: 1.2rem;
}

.nav-item {
  display: flex;
  align-items: center;
}

.bi {
  display: flex;
}

/* Main: */
h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: -2px -2px 0em #000;
  color: white;
  font-weight: 300;
}

#media-div {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
}

#carousel-photos,
#carousel-videos,
#carousel-interviews {
  width: 90%;
}


  #carousel-videos > div.carousel-indicators, #carousel-interviews > div.carousel-indicators{
margin-left: 30%;
margin-right: 30%;
  }
  #carousel-videos > button.carousel-control-prev, #carousel-videos > button.carousel-control-next, #carousel-interviews > button.carousel-control-prev, #carousel-interviews > button.carousel-control-next{
    height: 2rem;
    top: 45%;
  }


#carousel-photos > div.carousel-inner img,
#carousel-videos > div.carousel-inner iframe,
#carousel-interviews > div.carousel-inner iframe {
  height: 300px;
}

#photos-div {
  background: linear-gradient(to top left, white 50%, cyan 50%);
}

#videos-div {
  background: linear-gradient(to top right, white 50%, lightslategrey 50%);
}

#interviews-div {
  background: linear-gradient(to top left, white 50%, #ffd700 50%);
}

#photos-div,
#interviews-div,
#videos-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#carousel-photos {
  border: 7px solid yellow;
  border-radius: 0.3rem;
}
#videos-carousel {
  border: 7px solid deeppink;
  border-radius: 0.3rem;
}
#interviews-carousel {
  border: 7px solid #002f6c;
  border-radius: 0.3rem;
}

/* Footer: */
#bottom {
  height: 10vh;
  font-size: 2rem;
  background-color: #393d47;
  display: flex;
  justify-content: space-evenly;
  border-top: 1px solid white;
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.footer-link {
  text-decoration: none;
}

#youtube-link {
  color: #ff0000;
}

#youtube-link:hover .bi {
  filter: brightness(79%);
}

#spotify-link {
  color: #1db954;
}

#spotify-link:hover .bi {
  filter: brightness(79%);
}

#instagram-link {
  color: #8a3ab9;
}

#instagram-link:hover .bi {
  filter: brightness(79%);
}

#facebook-link {
  color: #4267b2;
}

#facebook-link:hover .bi {
  filter: brightness(79%);
}

/* Breakpoints: */
@media (min-width: 576px) {
  #carousel-photos,
  #carousel-videos,
  #carousel-interviews {
    width: 70%;
  }
}

@media (min-width: 768px) {
  #carousel-photos > div.carousel-inner img,
  #carousel-videos > div.carousel-inner iframe,
  #carousel-interviews > div.carousel-inner iframe {
    height: 400px;
  }
  #carousel-photos,
  #carousel-videos,
  #carousel-interviews {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .navbar-brand {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #navbar-mobile-dropdown {
    position: fixed;
    width: 100%;
    top: 10vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  #nav-ul > li > a {
    color: white;
    mix-blend-mode: difference;
  }

  #home-lg,
  #house-lg {
    display: none;
  }
}

@media (min-width: 992px) {
  #media-div {
    flex-direction: column;
    align-items: normal;
  }
  #photos-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  #interviews-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #videos-div {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  #photos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  #videos-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
  }

  #interviews-container {
    display: flex;
    /* flex-direction: row-reverse; */
    justify-content: space-around;
    align-items: center;
  }
  #navbar-mobile-dropdown {
    background: transparent;
  }

  #nav-ul > li > a {
    color: white;
  }

  #home-lg {
    display: flex;
  }

  #home-icon {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  #navvy {
    padding: 0 3em;
  }

  #carousel-photos > div.carousel-inner img,
  #carousel-videos > div.carousel-inner iframe,
  #carousel-interviews > div.carousel-inner iframe {
    height: 500px;
  }
  #carousel-photos,
  #carousel-videos,
  #carousel-interviews {
    width: 50%;
  }
}

@media (min-width: 1400px) {
}
