*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

:root {
  --bg-color:#080808;
  --second-bg-color:#131313;
  --third-bg-color:#ffbf00;
  --text-color:#ffffff;
  --main-color:#ffcc33;
}

html {
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg-color);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem;
  z-index: 999;
}

.nav-left a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: 0.5s ease;
  margin-right: 2rem;
  
}

.nav-left a:hover {
  color: var(--main-color);
  border-bottom: 3px solid var(--third-bg-color);
  
}

.nav-left ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.nav-middle {
  display: inline-block;
  text-align: center;
}

#logo {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
  font-family: "Poppins",  sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
}

#logo:hover{
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
}

#logo span {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: gold;
  font-size: 18px;
  display: block;
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

span {
  color: var(--main-color);
  text-transform: uppercase;
}

.nav-middle span img {
  width: 30px;
}

.nav-right {
  width: 300px;
  max-width: 280px;
  margin-right: 50px;
}
.nav-right ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 280px;
  max-width: 250px;
  flex-shrink: 0;
  margin: 0 2rem;
}

#menu-icon {
  width: 6rem;
  height: 6rem;
  color: var(--main-color);
  display: none;
  text-decoration: none;
  font-size: 6rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}

#menu-icon-close {
  width: 6rem;
  height: 6rem;
  color: var(--main-color);
  display: none;
  text-decoration: none;
  font-size: 6rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}


.social-icons a{
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  border: 2px solid var(--main-color);
  font-size: 2rem;
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}
.social-icons a:hover {
  color: var(--text-color);
  transform: scale(1.3) translateY(-5px);
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
}




section {
    background: #EEAECA;
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 5rem;
    text-align: center;
    border-bottom-left-radius:3rem ;
    border-bottom-right-radius:3rem ;
    padding: 15rem 5rem 8rem;

}

  .song-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem ;
    
  }

  .song-title h1 {
  color: var(--text-color);
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}

  .song-title p {
  color: var(--text-color);
  font-size: 1rem;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}


  .call-to-actions{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    row-gap: 1rem;
    margin-top: 7rem;
  }

  .call-to-actions .spotify a i {
    text-decoration: none;
    font-size:  1.5rem;
    color: #1db954;
    margin-left: .5rem;
    
  }

   .call-to-actions .youTube a i {
    text-decoration: none;
    font-size:  1.5rem;
    color: #b2071d;
    margin-left: .5rem;
  
  }

   .call-to-actions button a img {
    width: 28px;
    margin-left: .5rem;
  }
 
  .youTube a {
    color: var(--second-bg-color)
  }

  .trace a {
    color: var(--bg-color);

  }

  .spotify a {
    color: var(--bg-color);
  }

  .boomplay a {
    color: var(--bg-color);
  }


   .call-to-actions button a  {
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
    }


 .song-img img {
  position: relative;
  width: 17vw;
  border-radius: 2rem;
  object-fit: contain;
  box-shadow: 0 0 25px var(--main-color);
  cursor: pointer;
  transition: 0.4s ease-in-out;
  margin-top: 2rem;
}

.song-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--main-color);
  transition: 0.5s ease-in-out;
}



#listen {
  text-decoration: none;
  padding: .5rem 2rem;
  display: inline;
  color: var(--text-color);
  background: transparent;
  text-transform: uppercase;
  border: 2px solid var(--bg-color);
  border-radius: .4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 2rem;
  font-family: "Poppins", sans-serif;
}


#listen:hover {
    border: 2px solid var(--second-bg-color);
    background: var(--text-color);
  transition:  background-color 0.5s;
}







footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  background-color: var(--second-bg-color);
}

footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: var(--main-color);

}
footer .social a {
  font-size:  25px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}

footer .social a:hover {
  transform:  scale(1.2) translateY(-10px);
  background-color: var(--main-color);
  color: black;
  box-shadow: 0 0 25px var(--main-color)
}

footer ul {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

footer ul li a {
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
footer ul li a:hover{
  border-bottom: 3px solid var(--main-color);
}
footer ul li {
  display: inline-block;
  padding: 0 15px;
}

footer .copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--text-color);
}


@media screen and (max-width: 1093px){
  html {
    font-size: 55%;
  }
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    z-index: 999;
  }

  .nav-left {
  display: none;
  }

  .nav-middle {
    display: block;
  }

   .isActive {
    display: flex;
  }

  .js-navbar {
    position:absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 400px;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom-left-radius: 2rem;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .js-navbar a {
    display: block;
    font-size: 2rem;
    margin: 1rem 0;
    color: white;
  }

  #logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 5rem;
    font-family: "Poppins", sans-serif;
  }

  #logo:hover{
    transform: scale(1.2);
    transition: transform 0.5s ease-in-out;
  }


  #logo span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-left: 25px;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }


  #menu-icon {
  width: 6rem;
  height: 6rem;
  color: var(--main-color);
  display: inline-block;
  text-decoration: none;
  font-size: 6rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;

}

#menu-icon-close {
  width: 6rem;
  height: 6rem;
  color: var(--main-color);
  display: none;
  text-decoration: none;
  font-size: 6rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}
  .social-icons a{
    display: none;
  }


  section {
      background: #EEAECA;
      background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      column-gap: 0rem;
      text-align: center;
      border-bottom-left-radius:3rem ;
      border-bottom-right-radius:3rem ;
      padding: 20rem 5rem 8rem;

  }

    .song-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
   
    .call-to-actions{
      display: flex;
      margin-top: 2rem;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

  .song-img img {
    position: relative;
    width: 60vw;
    border-radius: 2rem;
  }

    .song-wrapper h1 {
  color: var(--text-color);
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

  .song-wrapper p {
  color: var(--text-color);
  font-size: 2rem;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
    
  #listen {
    font-size: 1.5rem;
  }


  #listen:hover {
      border: 2px solid var(--second-bg-color);
      background: var(--text-color);
    transition:  background-color 0.5s;
  }

  footer .social a {
    font-size:  28px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 30px;
    height: 30px;
    line-height: 32px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
  }

  footer ul li {
    font-size:13px ;
    padding: 15px 20px ;
  }

  
}

@media screen and (min-width:1095px) and (max-width: 1350px){

  
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem;
  z-index: 999;
}

.nav-left a {
 display: none;
}

.nav-left a:hover {
  display: none;
  
}

.nav-left ul {
  display: none
}

.nav-middle {
  display: inline-block;
  text-align: center;
}

#logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 5rem;
  font-family: "Poppins",  sans-serif;
  font-weight: 700;
  
}


#logo span {
  font-size: 1.5rem;
}


#menu-icon {
  width: 6rem;
  height: 6rem;
  color: var(--main-color);
  display: block;
  text-decoration: none;
  font-size: 6rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}

#menu-icon-close {
  width: 6rem;
  height: 6rem;
  color: var(--main-color);
  display: none;
  text-decoration: none;
  font-size: 6rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}


.social-icons a{
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  border: 2px solid var(--main-color);
  font-size: 2rem;
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}
.social-icons a:hover {
  color: var(--text-color);
  transform: scale(1.3) translateY(-5px);
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
}




section {
    background: #EEAECA;
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    border-bottom-left-radius:3rem ;
    border-bottom-right-radius:3rem ;
}

  .song-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
  }

  .song-wrapper h1 {
  color: var(--text-color);
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
}

  .song-wrapper p {
  color: var(--text-color);
  font-size: 2rem;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}


 .song-img img {
  position: relative;
  width: 20vw;
  border-radius: 2rem;
  object-fit: contain;
  box-shadow: 0 0 25px var(--main-color);
  cursor: pointer;
  transition: 0.4s ease-in-out;
  margin-top: 2rem;
}

.song-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--main-color);
  transition: 0.5s ease-in-out;
}


}
