/*-------------------------------------- DESKTOP ----------------------------------- */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: black #f9f9f9;
    overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
}
.marginContent {
  margin-bottom: 10px;
}
.container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}
#contentContainer {
  display: none; 
  margin: 0;
}
/*-------------------------------------- SPLASHPAGE ----------------------------------- */
#splashpageContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*-------------------------------------- CANVAS ----------------------------------- */
#leftCanvas {
  position: fixed;
  top: 30%;
  left: 1%;
  width: 5%;
  opacity: 0;
  z-index: -1;
  animation: fadeInOut 5s ease infinite;
}
#rightCanvas {
  position: fixed;
  top: 30%; 
  right: 1%;
  width: 5%;
  opacity: 0;
  z-index: -1;
  animation: fadeInOut 5s ease infinite;
}
@keyframes fadeInOut {
  0% {
    opacity: 0; 
  }
  20% {
    opacity: 1; 
  }
  80% {
    opacity: 1; 
  }
  100% {
    opacity: 0; 
  }
}
/*-------------------------------------- NAVBAR ----------------------------------- */
.navbar {
  background-color: #ffffff;
  color: black;
  height: 60px;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar.bg-transparent {
  background-color: rgba(255, 255, 255, 0.4) !important;
}
.navbar.bg-transparent:not(.navbar-light) .navbar-nav .nav-link {
  color: #000 !important;
}
.navbarLogo {
  width: 75%;
}
.navbarSocialImages {
  width: 70%;
  align-items: center;
  justify-content: center;
}
.navbarMobile {
  display: none;
}
.linkNavbar:hover {
  color: rgba(179,8,1,255);
  font-weight: 600;
}
.linkNavbar {
  font-size: 25px;
  padding: 20px;
  color: black;
  text-decoration: none;
}
.navbarLinksMobile {
  display: none;
}
.mobilenavbar-display-flex {
  display: block;
  text-align: center;
  justify-content: center;
}
/*-------------------------------------- HEADER MUSICVIDEO ----------------------------------- */
.headerMusicvideoContainer {
  position: relative;
  overflow-x: hidden;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.headerMusicvideo {
  height: 95vh;
}
.headerButtonDown {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.headerButtonDown img{
  width: 50px;
  animation-name: infiniteupdown;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  transition: all .3s;
}
@keyframes infiniteupdown {
0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-20px);
}
100% {
    transform: translateY(0px);
}
}
/*-------------------------------------- TOUR ----------------------------------- */
.tourContainer {
  text-align: end;
}
/*-------------------------------------- SHOP ----------------------------------- */
.shirtWidth {
  width: 350px;
}
/*-------------------------------------- MEDIA ----------------------------------- */
.textBio {
  text-align: center;
  line-height: 0.5;
}
.YouTubeVideo {
  width: 560px;
  height: 315px;
}
.memberPictureFilter {
  width: 200px;
  border: 4px inset black;
}
.memberPictureFilter:hover {
  transform: scale(1.1);
  filter: blur(1px);
}
.memberImageContainer {
  position: relative;
  display: inline-block;
}
.memberText {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; 
  text-shadow: 1px 1px 1px black;
  font-size: 14px; 
  opacity: 0; 
  transition: opacity 0.3s ease-in-out; 
}
.memberImageContainer:hover .memberText {
  opacity: 1; 
}
/*-------------------------------------- MOBILE ----------------------------------- */
@media screen and (min-width: 992px) {
  .headerMusicvideoMobile {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .marginTop {
    margin: 10px;
  }
  canvas {
    display: none;
  }
  /*-------------------------------------- SPLASHPAGE ----------------------------------- */
  #splashpageVideoPlayer {
    width: 500px;
  }
  /*-------------------------------------- NAVBAR ----------------------------------- */
  .navbarSocialImages {
    width: 70%;
    align-items: center;
  }
  .navbarDesktop {
    display: none;
  }
  .navbarMobile {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    overflow-y: hidden;
  }
  .navbarLogoMobile {
    width: 75%;
  }
  .navbarSocialImagesMobile {
    width: 30px;
  }
  .navbarBurgerMobile {
    width: 30px;
  }
  .navbarTextMobile {
    text-align: center;
    text-decoration: none;
    font-size: 30px;
  }
  /*-------------------------------------- HEADER MUSICVIDEO ----------------------------------- */
  .headerMusicvideoMobile {
    height: 95svh;
  }
  .headerMusicvideo {
    display: none;
  }
  /*-------------------------------------- TOUR ----------------------------------- */
  .tourContainerMobile {
    text-align: center;
    margin-top: 10px;
  }
  /*-------------------------------------- SHOP ----------------------------------- */
  .shirtWidth {
    width: 100px;
  }
  /*-------------------------------------- MEDIA ----------------------------------- */
  .memberPictureFilter {
    width: 150px;
  }
  .YouTubeVideo {
    width: 350px;
    height: 250px;
  }
  .textBio {
    text-align: center;
    line-height: 1.5;
  }
}