*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Libre Bodoni", serif;
  
}
:root{
  --primary-color:  #f8b435;
  --secondary-color: #182628;
  --ternary-color: #F1F5F9;
  --forth-color:
  --features-background: #F0F0F0;
  --side-bar-color: antiquewhite;


}
/* common classes */
.container{
  flex: 1 1 calc(70% - 20px);
  padding: 0 50px 50px 50px;

}
.songs-container{
  /* border: 2px solid gray; */
}

main{
  padding-top: 120px;
}
@media (max-width:1024px) {
  .container{
    padding: 0 20px 50px 20px;

  }
  
  
}

/*  =======================nav bar===========================================*/
nav { 
    
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: transparent;
  transition: background-color 0.3s;
  z-index: 1000;
  padding: 20px;
  font-family: "Playfair Display", serif;

}



nav div img {
  height: 80px;
  /* Adjusted height for the logo */
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-scrolled {
  background-color: var(--secondary-color) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-hb-clicked {
  background-color: var(--secondary-color) !important;
}

.navbar-hb-clicked a {
  color: var(--primary-color) !important;
}

#navbar a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.navbar-scrolled a {
  color: var(--primary-color) !important;
}


.white-button {
  background-color: var(--secondary-color);
  color: white;
}

.white-button::before {
  background: white;
  color: var(--primary-color);
}



.hamburger {
  display: none;
  cursor: pointer;
  background-color: transparent;

}

.bar {
  height: 3px;
  width: 25px;
  margin: 5px;
  background-color: var(--primary-color);
  display: block;
}

.hamburger:hover .bar {
  background-color: var(--primary-color);
}

@media (max-width: 1024px) {
  .hamburger {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      background-color: var(--secondary-color);
      position: absolute;
      width: 100%;
      top: 120px;
      left: 0;
      transition: background-color 0.3s ease-in-out;
      padding: 20px;

  }

  .nav-links li a {
      color: var(--primary-color)
  }

  .nav-links.show {
      display: flex;
  }


}

/* ui verse button */
.cssbuttons-io {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 1.5em;
  cursor: pointer;
  border: none;
  background: var(--secondary-color);
  color: ghostwhite;
  overflow: hidden;
}


.cssbuttons-io span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 0.4em 1.2em 0.4em 1.05em;
}

.cssbuttons-io span a {
  color: white !important;
}

.cssbuttons-io::before,
.cssbuttons-io::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cssbuttons-io::before {
  content: "";
  background: var(--primary-color);
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io:hover::before {
  transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
  transform: scale(0.95);
}


/* ===========================aside */
aside{
  
  flex: 1 1 20%;
  /* position: fixed; */
  /* top: 120px; */
  
  min-height: 100%;
}
.page-links-container{
  background: linear-gradient(90deg, #f8b435,  #182628 );
  /* background-color: var(--side-bar-color); */
  padding: 20px;
}

aside ul li{
  list-style: none;

}
aside ul li a{
  text-decoration: none;
  color: white;
  /* font-size: 1.2rem; */
  font-size: clamp(.8rem, 1.5vw, 1.2rem);
  line-height: 1.5rem;
  width: 100%;
  display: inline-block;
  padding: 5px;
}
aside ul li a:hover{
  background-color: lightgray;
  border-radius: 5px; 
}
aside ul li a.active {
  
  background-color: grey; /* Set the background color to grey */
  color: white;           /* Optional: Set the text color to white */
  border-radius: 5px;     /* Optional: Add border-radius for rounded corners */
  text-decoration: none;  /* Optional: Remove underline */
}
@media (max-width:576px) {
  aside{
    display: none;
  }
  
}
/* aside-mobile */
.aside-mobile{
  display: flex;

  justify-content: space-between;
  
}
.aside-mobile ul li{
  list-style: none;

}
.aside-mobile ul li a{
  text-decoration: none;
  color: black;
  /* font-size: 1.2rem; */
  font-size: clamp(.8rem, 1.5vw, 1.2rem);
  line-height: 1.5rem;
  width: 100%;
  display: inline-block;
  padding: 5px;
}
.aside-mobile ul li a:hover{
  background-color: lightgray;
  border-radius: 5px; 
}
.aside-mobile ul li a.active {
  
  background-color: grey; /* Set the background color to grey */
  color: white;           /* Optional: Set the text color to white */
  border-radius: 5px;     /* Optional: Add border-radius for rounded corners */
  text-decoration: none;  /* Optional: Remove underline */
}
.refine-section-mobile{
  width: 40%;
  background: linear-gradient(90deg, #f8b435,  #182628 );
  /* background-color: var(--side-bar-color); */
  padding: 20px;


}
@media (min-width:576px) {
  .aside-mobile{
    display: none;
  }
  
}
/*  */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  font-size: clamp(.8rem, 1.5vw, 1.2rem);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: background-color 0.3s;
}

.dropdown-header:hover {
  background-color: #f1f1f1;
}

.arrow-icon {
  transition: transform 0.3s;
}

.arrow-icon.rotate {
  transform: rotate(90deg);
}

  
/* songs================================== */
.songs-container>h1{
  font-size: 2rem;
  padding: 5px;
}
#songs-section{
  display: flex;
  /* gap: 20px; */
  /* align-items: center; */
}

.heading-links{
  display: flex;
  gap: 20px;
}
.heading-links li{
  list-style: none;
}
.heading-links li a{
  text-decoration: none;
}
/* refine */
.refine-section{
  background: linear-gradient(90deg, #f8b435,  #182628 );
  /* background-color: var(--side-bar-color); */
  padding: 20px;
  margin-top: 20px;
}
@media (max-width:576px) {
  #songs-section{
    flex-direction: column;
  }
  
}


/* ==============song card================== */
.songs-wrapper{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.song-card{
  flex: 0 1 calc(33.33% - 14px);
  
  /* height: 200px; */
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid gray;
  overflow: hidden;
}
.image-div{
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #FFE4C4;
  
  
}
.image-div img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title{
  /* height: 50px; */
  /* background-color: gray; */
  /* color: black; */
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;

}
.name-container{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgb(98, 95, 95);
 
}
.profile-details{
  display: flex;
  gap: 10px;
}
.title>span{
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 600;
}
.profile-logo{
  width: 40px;
  color: blue;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: black;
  
}
.profile-logo img{
  height: 100%;
  width: 100%
  
}
.name-wrapper{
  display: flex;
  flex-direction: column;
  font-size: clamp(0.8rem, 1vw, 1rem);
  justify-content: space-around;
}
.favorite-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .song-card{
    flex: 0 1 calc(50% - 10px);
  }
  
}
/* footer =============================================================================================================*/
footer {
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;

}

.outer-container {
  width: 90%;
  text-align: center;
  flex-wrap: wrap;
  overflow: hidden;

}

.flex-container {
  display: flex;


}

/* .col{
  display: flex;
  flex-direction: column;
  flex: 0 0 25%;
  align-items: center;
} */
.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img{
  height: 80px;
}

.footer-links-container {
  flex: 0 0 75%;
  display: flex;
}

.footer-links-container>div {
  width: 25%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-form-container {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.col>h3 {
  padding-top: 15px;
  font-size: 1.5rem;
}
.col>a{
  text-decoration: none;
  color: white;
}

.form-group textarea {
  min-height: 50px;
  max-height: 150px;
  color: white;

}

.form-group button {
  width: 80%;
  border: none;
}

.form-group input,
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid white;
  outline: none;
  width: 80%;
}

.icon-wrapper {
  display: flex;

}

.icon-wrapper i {
  font-size: 1.5rem;
  margin: 10px 10px;
}

.icon-wrapper span {
  display: flex;
  text-align: left;
}

.col span a {
  color: white;
  padding: 5px;
  font-size: 20px;
  /* border-radius: 50%; */
  /* border: 1px solid white; */
  /* line-height: 20px; */
}

.col span a {
  text-decoration: none;
  color: white;
  width: 40px;
  height: 40px;
  display: inline-flex;
  /* Use flexbox to center the icon */
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */

  border-radius: 50%;
  /* Make it round */
  transition: background-color 0.3s ease;
  /* Optional hover effect */
}

a:has(.fa-facebook-f) {
  background-color: #0861F2;
}

a:has(.fa-instagram) {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

}

a:has(.fa-youtube) {
  background-color: #FF0000;
}

.float-icon-container {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.float-icon-container a {
  height: 40px;
  width: 40px;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;

}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button i {
  color: white;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .logo-container {
      display: none;
  }

  .flex-container {
      flex-direction: column;
  }

  .footer-links-container {
      flex: 0 0 100%;

  }

  .footer-form-container {
      flex: 0 0 100%;
      margin-top: 20px;
  }

}

@media (max-width: 768px) {
  .footer-links-container {
      flex-direction: column;
  }

  .footer-links-container>div {
      width: 100%;
  }


  .col {
      margin-top: 20px;
  }
}