
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');

* {
  margin: 0;
  padding: 0;

  }

  
body {
  font-family: "Josefin Sans", sans-serif;
  background-color: #030303;
  overflow-x: hidden;
  width: 100%;
  }

  img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
                                                         /*Main Div*/
.backgroundimg{
  
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
 
}



.first-tag{
  color: white;
  position: absolute;
  font-size: 100px;
  width: 40%;
  top: 180px;
  left: 40px;
  line-height: 100px;
}

@media (max-width: 768px) {
  .first-tag {
    top: 200px;
    font-size: 36px;
    line-height: normal;
    width: 90% ;
    text-align: center;
    display: block;
  }

  .backgroundimg{
    background-position-x: 50%;
  }

}




.fadeincssdelayed {
  opacity: 0;
  animation: fadeInOnly 1s ease-in forwards;
  animation-delay: 1.6s;
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}



.album-info h3{
  text-align: center;
  font-size: 22px;
  color: rgb(0, 0, 0);
  margin-top: 23px;
  letter-spacing: 5px;
  color: white;
}

.album-info h4{
  color: rgb(241, 208, 136) !important;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  cursor: pointer !important;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .album-info h3{
    font-size: 14px;
    letter-spacing: 1px;
  }

  .album-info h4{
    font-size: 14px;
  }

  .popular{
    width: 100%;
  }
  .pop-releases{
    width: 100%;
    justify-content: space-around;
  }

}
  

.album-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(25, 196, 226);
  transition: width 0.5s ease-in-out;
}

.album-info:hover::after {
  width: 100%;
}



                                                              /*Main Div*/

                                                              /*Record Player*/
.releases{
  background-image: linear-gradient(#060709,#060709eb, #060709), url('Rhita/1.webp');
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 4%;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; 

}



.releases a{
  text-decoration: none;
}

.releases::not(.child)::before {
  content: '';
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* adjust this value to change the opacity */
}


.releases h1{
text-align: center;
font-size: 40px;
font-weight: 1000;
color: #fcdf5c;
}


.releases h2{
  text-align: center;
  font-size: 30px;
  color: #eadea6;
  margin-top: 20px;
  letter-spacing: 1px;
  cursor: default;
  }




#viewcatalog button{
  padding: 10px 20px;
  font-size: 16px;
  font-family:"Josefin Sans", sans-serif;
  font-weight: 700;
  cursor: pointer;
  background-color: #fcdf5c; /* 44a0b0 */
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

#viewcatalog button:hover{
  background-color: #44a0b0;
  color: white;
}







.album-wrapper {
  position: relative;
  display: inline-block;
  max-width: 80vw; /* Keeps it responsive */
}

.ndawa{
  margin-top: 30px;
}

.popular{

  display: flex;
  flex-direction: column;
  width: 85%;
  margin-top: 30px;
}

.poptag{
  text-decoration: underline;
  letter-spacing: 3px;
}


.pop-releases{
  margin-top:40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  position: relative;
  width: 100%;
}


.AlbumCover{
  display: block;
  position: relative;
  z-index: 2;
  width: 35vw; /* Responsive width */
  max-width: 350px; /* Prevents it from getting too big */
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  box-shadow: 3px 6px 20px rgba(0, 0, 0, 0.871);
  border-radius: 10px;
  transition: all 1.2s;
}


.AlbumCoverPop{
  display: block;
  position: relative;
  z-index: 2;
  width: 25vw; /* Responsive width */
  max-width: 300px; /* Prevents it from getting too big */
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  box-shadow: 3px 6px 20px rgba(0, 0, 0, 0.871);
  border-radius: 10px;
  transition: all 1.2s;
}


.AlbumCover:hover , .AlbumCoverPop:hover{
  scale: 1.1;
  border-radius: 4px;
}

.listen-now{
  position: absolute;
  font-size: 20px;
  top: 90%;
  left:-8%;
  z-index: 50;
  background-color: rgb(255, 216, 61);
  padding: 3px 0;
  width: 116%;
  text-align: center;
  color: rgb(0, 0, 0);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  font-weight: bold;

}

.album-wrapper:hover .listen-now{
  top: 50%;
  opacity: 1;
}


.vinyl {
  position: absolute;
  right: -50%;
  top: 50%;
  width: 35vw; /* Responsive width */
  max-width: 350px; /* Prevents it from getting too big */
  transform: translateY(-50%);
  z-index: 1;
  animation: spinVinyl 3s linear infinite;
}

.vinylpop{
  position: absolute;
  right: -50%;
  top: 50%;
  width: 25vw; /* Responsive width */
  max-width: 300px; /* Prevents it from getting too big */
  transform: translateY(-50%);
  z-index: 1;
  animation: spinVinyl 3s linear infinite;
}



@keyframes spinVinyl {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}



@media (max-width: 768px) {
  .AlbumCover,
  .vinyl {
    width: 40vw; /* Adjust to be smaller */
    max-width: 220px; /* Limits max size */
  }

  .vinyl {
    right: -40%; /* Adjust to keep it behind */
  }
  .poptag{
   font-size: 27px !important; 
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .AlbumCover,
  .vinyl {
    width: 60vw;
    max-width: 200px;
  }

  .vinyl {
    right: -30%; /* Moves it closer */
  }

  .smallrecordone{
    margin-left: -10px !important;
  }

  .smallrecordtwo{
    margin-right: 8px !important;
  }

}





                                                /*Record Player*/




.header {
  background-color: #060709;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6000;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition: background-color 0.70s , opacity 1s, transform 1s;
}

.header:hover{
  background-color: #efc44e;
  opacity: 1;
}

.header:hover .navpc ul li a{
  color: #000000;

}

.header:hover .navpc a{
  border-bottom: 2px solid #000000; /* add underline */
}



.header:hover .logo{
  filter:brightness(-100%) opacity(80%)
}

.navpc a{
  transition: all 0.4s;
}
.navpc a:hover{
  font-weight: bold;
  letter-spacing: 2px;
}



.sticky {
 position: fixed;
top: 0;
left: 0;
width: 100%;
visibility: visible;
opacity: 0.96;
transform: translateY(0);
}

.header.hidden {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.70s;
}

.header.hidden.sticky {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.70s;
}

.header.hovered {
  opacity: 1 !important;
  transform: translateY(0) !important;
}






.left-section{
width: 33%;
display:flex;
align-items: center;
}

.logo{
 width:68%;
 cursor: pointer !important;
 transition: all 0.50s;
 margin-top: 7px;

}




.middle-section{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;

}
.chilly {
  width: 34px;
  filter: sepia(40%);
  cursor: pointer !important;
  transition: all 0.50s;
  transform-origin: center; /* Ensures the image spins around its center */
}


.chilly:hover {
  filter: none;
}

/* Define the spinning animation */
.flip {
  animation: spinAnimation 1s ease-in-out;
}

@keyframes spinAnimation {
  0% {
    transform: rotate(0deg); /* Start at the initial position */
  }
  100% {
    transform: rotate(360deg); /* End at 360 degrees (one full spin) */
  }
}




.right-section{
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-right: 30px !important;
}

ul{
  list-style: none;
  display: flex;
}

li{
  margin-right: 20px;
}

li a{
  color: white;
  text-decoration: none;
  cursor: pointer !important;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  padding: 5px;
}



@media (max-width: 930px) {
.header{
  display: none;
}
  .navpc{
      display: none;
      
  }

}

.navpc a{
  margin-bottom: 5px; /* add space between text and underline */
  border-bottom: 2px solid #fcdf5c; /* add underline */
}



                  /* Hamburger List */

.hamburger {
  position: fixed;
  top: 1.6%;
  right: 3%;
  width: 30px;
  height: 30px;
  cursor: pointer !important;
  z-index: 100;
  display: none;
  visibility: hidden;
  margin-top: 10px;
  margin-right: 3px;
  z-index: 6001;
  padding-top: 1%;
}

@media (max-width: 930px) {
  .hamburger {
  display:block;
  visibility: visible;
  padding-top: 0;
  }
}

.hamburger span {
  display: block;
  width: 92%;
  height: 2.5px;
  background-color: #fcdf5c;
  margin-bottom: 5px;
  transition: all 0.3s;
  box-shadow: #030303 2px 2px 5px 1px;
  opacity: 1;
}

.hamburger:hover{
  filter: none;
}

.hamburger span:nth-child(1) {
  transform-origin: top left;
}

.hamburger span:nth-child(2) {
  transform-origin: center;
}

.hamburger span:nth-child(3) {
  transform-origin: bottom left;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

                        /* Pop-Up Menu */
.menu {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: -200px;
  width: 80%;
  height: 100%;
  background-color: #232223;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Josefin Sans", sans-serif;
}

.menu.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.menu-link{
  padding: 40px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: solid 2px rgba(100, 97, 97, 0.382);
  transform: translateX(65%);
  transition: transform 0.5s ease-in-out;
}

.menu-link.animate {
  transform: translateX(0);
}

.menu-link:hover{
  background-color: #8f5d74;
}

.menu-link:active{
  background-color: #5f83af;
}

.menu-link a{
  color: #f7e9b4;
  font-size: 2em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer !important;
  text-align: center;
  width: 100%;
}

.menu-content{
  width: 100%;
}
.menu-socials{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.socials-menu a{
  text-decoration: none;
  align-self: center;
  justify-self: center;
}

.socials-menu .icon{
  filter: brightness(0) invert(1);
}


                      /* Hamburger List */


                      /*video container*/

  .video-container{
      
      width: 100%;
      overflow-x: hidden;
      background-image: linear-gradient(to right, #030303,#030303, #1721274e), url('Rhita/3.webp');
      background-position: right;
      background-position-x: 160%;
      padding-bottom: 4%;
      padding-top: 4%;
      
  }


  .page-definition {
    text-align: center;
    font-size: 40px;
    font-weight: 1000;
    color: #fcdf5c;
    margin: 0 auto;
    flex-direction: column;
    margin-bottom: 2%;
  }

  .video-wrapper{
      display: flex;
      padding-left: 8%;
      align-items: center;
      justify-content: center;
      position: relative;
  }


  .video{
      z-index: -1;
      margin-right: 5%;
      background-color: none;
      height: 450px;
      width: auto;
      opacity: 0;
      transition: opacity 0.5s;
  }
  .video.fade-in {
    opacity: 1;
  }


    .about{
      display: flex;
      flex-direction: column;
      margin-left: 10%;

    }

    .about h1{
      color: #fcdf5c; /*yellow*/
      font-size: 40px;
      margin-top: 10px;
      margin-bottom: 4%;
      font-family: "Josefin Sans", sans-serif;
      width: 100%;
      letter-spacing: 4px;
    }
  
  .paragraph{
    color: white;
    font-size: 28px;
    text-align: left;
    width: 80%;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 1px;
    line-height: 38px;
    
  }



  @keyframes animate {
    0% {
      background-position: 0% 0%;
    }
    100% {
      background-position: 100% 100%;
    }
  }


  .rhitaname{
    color: rgba(250, 146, 184, 0.674);
    font-weight: 1000;
    letter-spacing: 4px;
    text-decoration:underline;
  }

  .refrence-song a{
    text-decoration: none;
    text-decoration:underline;
    color: rgba(241, 108, 75, 0.773);
    font-weight: 1000;
    letter-spacing: 4px;
    cursor: pointer;
  }
  

  @media (max-width: 980px) {
    .video-wrapper{
      display: flex;
      flex-direction: column;
      padding-left: 0;
    }
    .containertxt{
      text-align: center;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .video{
      width: 100%;
      height: auto;
      display: none;
    }

    .about{
      display: flex;
      flex-direction: column;
      margin-left: 0;
      align-items: center;
      justify-content: center;

    }

    .about h1{
      text-align: center;
      font-size: 30px;
      margin-bottom: -10px;
    }

    .paragraph{
      line-height: normal;
      font-size: 18px;
      justify-content: center;
      align-items: center;
      line-height: 30px;
      background-color: rgba(24, 25, 25, 0.538);
      padding: 10px 5px;
      border-radius: 20px;
      letter-spacing: normal;
      width: 70%;
      color: rgb(255, 255, 255);
      padding: 10px;
    }

    .video-container{
      background-image: linear-gradient(to right, #0303034f,#03030356, #4b96c400), url('Rhita/3.webp');
      background-position: center;
    }
    }
  










  /*social media icons*/

  .socials{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 2s, opacity 2s;

  }


  .socials a {
    cursor: pointer !important;
  }

  .social-media-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    cursor: pointer !important;
    transition: background-color 0.20s, scale 0.40s;
    margin-right: 25px;
    
  }

  .social-media-button:hover {
    scale: 1.1;
  }

  @media (max-width: 768px) {
    .social-media-button {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 65%;
  }
  }



  .social-media-button:hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }

  .social-media-button .tooltip {
    position: absolute;
    top: 117%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 5;
  }

  .social-media-button:hover .tooltip {
    opacity: 1;
  }

  .social-media-button .icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 8px auto;
  }

  @media (max-width: 768px) {
    .social-media-button .icon {
      width: 28px;
      height: 28px;
      margin-top: 5px;
      
    }
  }

  .social-media-button.instagram .icon {
    background: url('icons/insta.png') center no-repeat;
    background-size: contain;
  }

  .social-media-button.youtube .icon {
    background: url('icons/youtube.png') center no-repeat;
    background-size: contain;
  }

  .social-media-button.twitter .icon {
    background: url('icons/twitter.png') center no-repeat;
    background-size: contain;
  }

  .social-media-button.spotify .icon {
    background: url('icons/spotify.png') center no-repeat;
    background-size: contain;
  }


  .social-media-button.soundcloud .icon {
    background: url('icons/sound.png') center no-repeat;
    background-size: contain;
  }

  .social-media-button.facebook .icon {
    background: url('icons/facebook.png') center no-repeat;
    background-size: contain;
  }

  .social-media-button.instagram:hover{
    background-color: rgba(218, 39, 137, 0.447);
  }
  .social-media-button.youtube:hover{
    background-color: rgba(245, 54, 54, 0.447);
  }

  .social-media-button.twitter:hover{
    background-color: rgba(54, 196, 232, 0.657);
  }
  .social-media-button.spotify:hover{
    background-color: rgba(64, 237, 73, 0.51);
  } 
  .social-media-button.soundcloud:hover{
    background-color: rgba(255, 112, 3, 0.447);
  }

  .social-media-button.facebook:hover{
    background-color: rgba(16, 96, 215, 0.447);
  }



  /*Image Switch On Hover*/
                             
                              /*By Your Side*/

                                                       

#topbgpic {
  transition: opacity 0.5s;
}

#topbgpic.fade-out {
  opacity: 0.6;
}

.navinpic{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%,-50%);

}

.socials-top{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
}

@media (max-width: 768px) {
  .socials-top{
    top: 60%;
  }
}

.top-container{
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
 

}



.fixed-bg2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px; /* Full viewport height */
  background: linear-gradient(#011b2c00 , #06070985), url('newpic.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 20%;
  background-position-x: center;
  z-index: -1; /* Push it behind the content */
  overflow: hidden;
  overflow-x: hidden !important;
}

.top-container h1{


  text-align: center;
  color: #fcdf5c; /*yellow #fcdf5c*/
  font-size: 80px;
  margin-top: 50px;
  text-shadow: 2px 2px 9px #000000;

}

.h1pic{
  width: 600px;
  position: absolute;
  top: 50px;
  left: 50%;
  margin-left: -300px;
}


@media (max-width: 768px) {
  .h1pic{
    width: 300px;
    margin-left: -150px;
  }
}


.navinpic li a{
  padding: 7px;
  border-radius: 3px;
  color: #b2ebf5;
  text-shadow: 2px 2px 9px #000000;
  position: relative;

}
.navinpic li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fcdf5c;
  transition: width 0.2s ease-in-out;
}

.navinpic li a:hover::after {
  width: 100%;
}



@media (max-width: 768px) {
  .navinpic{
    display: none;
  }
  .top-container h1{
    font-size: 45px;
  }


}




@media (max-width: 768px) {
 
  #viewcatalog{
   margin-top: 30px;
   bottom: 10px;
  }
  .releases{
    padding-bottom: 18%;
  }
}

                                    /*footer Div*/

.footer{
  background-color: #333;
  width: 100%;
  padding: 2% 0;
  background-image: linear-gradient(#060709f6, #060709), url('pics/footerbg.webp');
}

.footer h1{
  margin-top: 10px;
}



.contact-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.contact-info {
  color: #fff;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.211);
  height: 300px;
  border-radius: 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}


.contact-info p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
  z-index: 1;
}

  .mid-footer{
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .right-footer{
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .right-info{
    background-color: rgba(255, 255, 255, 0.211);
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    transition: all 0.3s ease-in-out;
  }

  .right-footer p{
    text-align: center;
    color: white;
    font-size: 18px;
  }

 .donatebutton{
    margin-top: 20px;
    width: 130px;
    height: 40px;
    background-color: rgb(255, 230, 91);
    border-radius: 50px;
    border: none;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out;
 
  }

  .donatebutton img{
    width: 100px;
    transition: all 0.2s ease-in-out;
  }

  .donatebutton:hover{
    scale: 1.2;
    background-color: rgb(0, 0, 0);
    border: solid white 2px;
  }

  .donatebutton:hover img{
    filter: brightness(0) invert(1);
  }

  .socials-footer{
    margin-top: -30px;
  }

  .socials-footer a{
    text-decoration: none;
  }

  .socials-footer .social-media-button{
    margin-right: 3px;
    width: 40px;
    height: 40px;
  }


  .left-footer{
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .left-info{
    background-color: rgba(255, 255, 255, 0.211);
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    width: 300px;
    transition: all 0.3s ease-in-out;
  }

  .left-info p{
    color: white;
    font-size: 20px;
    margin-top: 15px;
    text-decoration: underline;
    cursor: default;
  }

  
  .circle-picture {
    height: 200px;
    border-radius: 50%;
    background-color: #fff;
    order: -1;
      }

  .footer-details{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin-top: 50px;
  }

  .footer-details p{
    color: white;
    opacity: 0.6;
  }


  .footer-details a{
    text-decoration: underline;
    color: white;
  }

 .left-info:hover, .right-info:hover, .contact-info:hover{
    scale: 1.1; 
  }



  @media (max-width: 1024px) {
    .left-footer{
      display: none;
    
    }

    .mid-footer, .right-footer{
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .contact-div{
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .left-footer{
      display: none;
    }
    .mid-footer, .right-footer{
      width: 100%; 
      margin-bottom: 20px;
    }

    .footer-details{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-details p{
      margin-bottom: 10px;
  }

}

 .socials-footer .icon{
  filter: brightness(0) invert(1);
  width: 28px;
  height: 28px;
}





                                                    /*footer Div*/

                            /*live videos*/


  







  .performances{
    width: 100%;
    position: relative;
    padding-top: 4%;
    padding-bottom: 4%;
    background-image: linear-gradient(to right,#0607094b, #060709);
  }

  .per-bg{
    object-position: 40% 50%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(5px);
  }

  .livevideos{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2% 10%;
  }

  .headline-live{
    width: 40%;
    color: white;
    margin-right: 60px;
    text-align: left;
  }

  .headline-live h1{
    font-size: 40px;
    margin-bottom: 20px;
  }

  .headline-live h1 span{
    color: rgb(246, 209, 5);
  }

  .headline-live p{
    font-size: 28px;
    margin-top: 10px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.673);
    padding: 10px 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 6px 6px 7px  black;
  }

 .samir{
    text-decoration: underline;
    color: rgb(143, 197, 220);
    cursor: pointer;
  }
  .livevidcontainer{
    width: 60%;
    position: relative;
  }

  .cmlvid-placeholder {
    width: 100%;
    height: 380px;
    background-color: #000;
    position: relative;
    cursor: pointer;
  }

  .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 50%;
  }

  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    width: 68px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
    outline: none;
    text-align: center;
  }
  
  .play-icon {
    font-size: 24px;
    color: white;
    line-height: 1;
  
  }
  
  .cmlvid-placeholder:hover .play-btn {
    background: #ff0000; /* YouTube red */
  }

  .cmlvid{
    width: 100%;
    height: 380px;
    display: none; /* Hide initially */
  }

  #viewvideos button{
    padding: 10px 20px;
    font-size: 16px;
    font-family:"Josefin Sans", sans-serif;
    font-weight: 700;
    cursor: pointer;
    background-color: #fcdf5c; /* 44a0b0 */
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  #viewvideos button:hover{
    background-color: #44a0b0;
    color: white;
  }

  .viewmorevidss{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 40px;
    position: relative;
  }

  .arrow{
    width: 90px;
    position: absolute;
    right: 35%;
    transform: translateX(80%);
    margin-top: -26px;
    transition: all 0.5s;
    transform: translateY(-30%);
    opacity: 0;
    transition: all 0.6s;
    transition-delay: 0.5s;
  }

  .arrow.animate{
    transform: translateY(0%);
    opacity: 0.25;
  }
  

  @media (max-width: 900px) {
    .arrow{
      right: 10%;
      width: 50px;
    }

  }



  @media (max-width: 1200px) {
    .livevideos{
      flex-direction: column;
    }
    .headline-live{
      width: 50%;
      margin-right: 0;
      margin-bottom: 20px;
      margin-top: 20px;
    }
    .headline-live h1{
      font-size: 24px;
    }
    .headline-live p{
      font-size: 18px;
    }
    .livevidcontainer{
      width: 50%;
    }
    .cmlvid, .cmlvid-placeholder{
      height: 200px;
      margin-bottom: 10px;
    }

  }

  @media (max-width: 768px) {
    .performances{
      padding-top: 8%;
      padding-bottom: 8%;
    }
    
    .livevideos{
      flex-direction: column;
    }
    .headline-live{
      width: 90%;
      margin-right: 0;
      margin-bottom: 20px;
      margin-top: 20px;
    }
    .headline-live h1{
      font-size: 22px;
      margin-bottom: 5px;
    }
    .headline-live p{
      font-size: 16px;
    }
    .livevidcontainer{
      width: 90%;
    }
    .cmlvid{
      height: 170px;
      margin-bottom: 10px;
    }

  }
                        /*FADE INS*/

.fade-in {
  opacity: 0;
  transition: opacity 2s;
}

.fade-in.show {
  opacity: 1;
}


/*
.flash {
  opacity: 1;
  transition: opacity 0.5s;
}

.flash.fade-out {
  opacity: 0;
}
*/


.animate-on-scroll {
  transition: transform 1.5s;
  transform: scale(0.5); /* initial state: scaled down */
}

.animate-on-scroll.animate {
  transform: scale(1); /* animated state: scaled up */
}

.animate-on-scroll2 {
  transition: transform 0.5s;
  transform: scale(0.9); /* initial state: scaled down */
}

.animate-on-scroll2.animate {
  transform: scale(1); /* animated state: scaled up */
}

.slideonright {
  transition: all 0.5s;
  transform: translateX(-30%);
  opacity: 0;
}

.slideonright.animate {
  transform: translateX(0%);
  opacity: 1;
}

.slideonleft{
  transition: all 0.5s;
  transform: translateX(30%);
  opacity: 0;
}

.slideonleft.animate {
  transform: translateX(0%);
  opacity: 1;
}




.fade-slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.fade-slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-slide-down {
    opacity: 0;
    transform: translateY(-20px);  /* start above */
    transition: all 0.8s ease-out;
}

.fade-slide-down.show {
    opacity: 1;
    transform: translateY(0);      /* final position */
}

.faderin{
  transition: all 0.5s;
  opacity: 0;
}

.faderin.animate{
  opacity: 1;
}


@media (max-height: 400px) {
  .socials-top{
    top: 93%;
  }

  .logo{
    height: 30px;
    width: 50%;
  }

  .menu-link{
    padding: 8px 0;

  }
}


/*article text middle */

.text {
  position: absolute;
  width: auto;
  height: 15em;
  margin: 0 auto;
  font-size: 110%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
/*  orientasi teks ke vertikal  */
  text-orientation: upright;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
  left: 50%;
  color: rgb(255, 255, 255);
  opacity: 0.25;
  z-index: 0;
}

/* Animation */
.typing-vertical-animation {
  animation: typewriter 5s steps(40) 1s infinite normal, 
             blinkTextCursor 500ms steps(40) infinite normal;
}

@keyframes typewriter {
  0% { height: 0; }
  80% { height: 20em; }
  100% { height: 20em; }
}

.musicpagealbumwrap{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.musicpagealbumwrap a{
  text-decoration: none;
}

.releases-title{
  color: white;
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
}











.swiper {
  width: 100%;
  height: max-content;
  position: relative;

}

.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.swiper .page-definition{
  margin-top: 35px;
}

.swiper-slide h2{
  text-align: center;
  font-size: 30px;
  color: #eadea6;
  margin-top: 20px;
  letter-spacing: 1px;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .swiper {
    height: max-content;
  }
}


/* Swiper Custom Styles */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
}

.swiper-pagination .swiper-pagination-bullet{
  background-color: white !important;
}

/* Change color of active dot */
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(255, 203, 48) !important; /* Change to your desired active color */
}

.swiper-button-next,
.swiper-button-prev {
    color:  rgb(255, 203, 48) !important; /* Change to your desired color */
}

.circle-picture-mid{
  height: 200px;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
  filter: blur(1.5px);
  display: none;
}

@media screen and (max-width: 768px) {
  .circle-picture-mid{
    display: block;
  }
}








.igcontainer{
  width: 100%;
  margin-top: 15px;
  overflow-x: none;
  padding-bottom: 30px;
  padding-top: 15px;
  position: relative;
}




.igsvg{
  position: absolute;
  top: 15%;
  right: 70px;
  opacity: 0.5 !important;
}

.igsvg2{
  position: absolute;
  bottom: 15%;
  left: 70px;
  opacity: 0.5 !important;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 20px; /* More spacing between images */
  max-width: 900px; /* Wider grid for bigger images */
  margin: auto;
  overflow-x: none;
  border-bottom: 3px solid #fcdf5c;
  padding-bottom: 10px;
}

/* Make it 2 columns on smaller screens */



.insta-item {
  position: relative;
  overflow: hidden;
  display: block;
  
}


.insta-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.4s ease-in-out;
}

.insta-item .insta-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.49); /* Dark overlay */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-align: center;

}

.insta-item .insta-caption p {
  max-width: 90%; /* Prevents text from touching edges */
  white-space: normal; /* Allows text wrapping */
  display: block; /* Ensures it behaves like a container */
  text-align: center;
  transform: translateY(15%); /* Start slightly below */
  transition: transform 0.3s ease-in-out;
}

.insta-item:hover .insta-caption p {
  transform: translateY(0); /* Moves up on hover */
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-caption {
  opacity: 1;
}

@media (max-width: 950px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Slightly bigger gap on mobile */
    max-width: 85%; /* Keep some space on the sides */
  }
}

@media screen and (max-width: 768px) {
  .insta-item .insta-caption p {
    font-size: 12px;
  }

  .nineth{
    display: none;
  }

  .igcontainer svg{
    display: none;
  }
  
}


.view-more {
  text-align: center;
  margin-top: 20px;
}

.view-more a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fcdf5c; /* 44a0b0 */
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.view-more a:hover {
  background-color: #44a0b0;
  color: white;
  transform: scale(1.05);
}





/* Modal Background */
.ig-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Dark overlay */
  align-items: center;
  justify-content: center;
  z-index: 9000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Modal Content */
.ig-modal-content {
  background: white;
  padding: 15px;
  border-radius: 8px;
  width: 85%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
    /* Ensure the modal is centered properly */
    display: flex;
    flex-direction: column;
    align-items: center;
  /* Set a min-height to prevent scrolling inside */
  min-height: 590px; /* Adjust this based on iframe size */
  
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Instagram Embed Frame */
#ig-embed {
  width: 90%;
  height: 600px;
  border-radius: 5px;
  overflow: hidden; /* Prevent scrolling inside */
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top: 4px solid black;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.footer-details a{
  list-style: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 0.8;
}

.footer-details a:hover{
  list-style: none;
  cursor: pointer;
  color: #40a9ff;
  letter-spacing: 1px;
}

@keyframes popEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.10); } /* Slight pop */
  100% { transform: scale(1); }
}

.pop-highlight {
  animation: popEffect 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.articles{
  width: 100%;
  padding: 5% 0;
  background-image: linear-gradient(#000000f2, #020106), url(Articles/blur.jpg);
  background-size: cover;
  background-position: right;
  background-repeat:no-repeat;
  overflow-y: none;
}

.articlelist{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}


.article-card{
  background-color: #ffffffc8;
  height: 460px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  overflow: none;
  margin: 0;
  filter: grayscale(100%) brightness(50%);
  transition: filter 0.6s, transform 0.3s ease-in-out;
}

.article-card.animate{
  filter: none;
}



.article-a{
  text-decoration: none;
  width: 40%;
  min-width: 180px;
}

.rowenabler{

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 50%;
  margin: 0;
  padding: 0;
  min-width: 80px;
}

.article-card:hover{
  transform: scale(1.1);
  filter: contrast(130%);
}

.article-preview{
  width: 100%;
  height: 50%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.firstarticle , .thirdarticle{
  object-fit: cover;
  object-position: center;
}

.secondarticle{
  object-fit: contain;
  object-position: center;
}

.fourtharticle{
  object-fit: cover;
  object-position: top;
}

.article-tag{
  display: flex;
  flex-direction: row;
  padding: 0 10px;
  padding-top: 8px;
  background-color: #fcdf5c;
  overflow: none;
}

.article-tag h2{
  font-size: 18px;
  color: #000000;
}

.article-meta{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 6px 10px;
  background-color:  #387ab1c6;
  color: #000000;
  overflow: none;
}

.article-text{
  padding: 0 10px;
  padding-top: 8px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  color: #000000;
  line-height: 19px;
}


@media (max-width: 900px) {

  .rowenabler{
    width: 100%;
    flex-direction: column;

  }

  .article-card{
    margin-top: 50%;
    overflow: hidden;
  }
  
  .article-card{
    height: 300px;
    background-color: #fcdf5c;
  }

  .article-tag h2{
    font-size: 16px;
    overflow: hidden;
  }

  .article-text{
    display: none;
  }

}

@media (max-width:768px) {

  .rowenabler{
    width: 100%;
    flex-direction: column;

  }

  .article-card{
    margin-top: 14%;
  }
  
  .article-card{
    height: 200px;
    background-color: #fcdf5c;
  }

  .article-text, .article-meta{
    display: none;
  }

  .article-tag h2{
    font-size: 14px;
    overflow: hidden;
  }

  .article-preview{
    height: 50%;
  
}

.secondarticle{
  object-fit: cover;
  object-position: center;
}

}

.homeicon{
  width: 19px;
  height: 19px;
}


.smitnalogo {
  width: 100px;
  margin-top: -10px;
  margin-bottom: -40px;
  animation: float 2s ease-in-out infinite;
  transition: transform 0.3s ease-in-out;
}

.smitnalogo:hover {
  transform: scale(1.06);
}

/* Floating animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.footercredit{
  justify-self: center;
  justify-content: center;
  align-items: center;
  justify-self: center;
  display: flex;
  padding-bottom: 5px;
  text-decoration: none;
  color: #ffffff88;
}