*{
  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: 4rem;
  height: 4rem;
  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: 4rem;
  height: 4rem;
  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);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: .6rem 2.8rem;
  text-decoration: none;
  background: var(--text-color);
  box-shadow: 0 0 25px var(--second-bg-color);
  border-radius: .2rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--bg-color);
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--main-color);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-group a:nth-of-type(2) {
  background-color: black;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  box-shadow: 0 0 25px transparent;

}
.btn-group a:nth-of-type(2):hover {
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
  color: black;
}


.hero {
  display: flex;
  justify-content: center;
  gap: 7rem;
  background-image: linear-gradient(var(--second-bg-color));
  position: relative;
  align-items: center;
  text-align: left;
  margin-top: 5rem;
  padding: 10rem 4rem 4rem;
  height: 100vh;
}

.hero img {
  border: 0%;
}

.hero-img img {
  position: relative;
  width: 25vw;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 25px var(--main-color);
  cursor: pointer;
  transition: 0.4s ease-in-out;
}



.hero-img img:hover {
  box-shadow: 0 0 25px var(--main-color),
              0 0 50px var(--main-color),
              0 0 100px var(--main-color);

}

.hero::before {
  content: '';
  background-image: linear-gradient(180deg, rgba(21, 22, 24, 0.24) 0%, #151618 100%);
  background-color: rgba(15, 17, 21, 0.4);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.producer-intro {
  color: #fff;
  text-align: start;
}

.producer-intro h2 {
  max-width: 850px;
  font-size: 2rem;
  text-transform: none;
  font-weight: 500;  
  line-height: 1.2;
  letter-spacing: 1px; 
  margin-bottom: 5rem;                      
  font-family: "Poppins", sans-serif;
}

.producer-intro span {
  color: gold;
 }

 .my-work {
  background: #22C1C3;
  background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
  text-align: center;
  padding-top: 5rem;
  height: 70vh;
 }

 .my-work p {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5rem;
  color: #fff;
  text-align: center;
 }

 .making-music-vidoes {
  position: relative;
  background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  height: 80vh;
  z-index: 1;
  padding-top: 8rem;
 }

 .making-music-vidoes p {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  margin-bottom: 10rem;
  line-height: 1.5;
  letter-spacing: 1px;
 }

 .making-music-vidoes a {
  border: 2px solid var(--main-color);
  margin-left: calc(35% + 8px);
 }


 .making-music-vidoes::before {
  position: absolute;
  inset: 0;
  content: '';
  background-image: linear-gradient(180deg, rgba(21, 22, 24, 0.4) 0%, #151618 100%);
  z-index:-2;
 }

 video {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -3;
 }

 .musical-instrument {
  background: #2A7B9B;
  background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 14%, rgba(197, 215, 96, 1) 25%, rgba(237, 221, 83, 1) 100%);
  height: auto;
  padding: 4rem 3rem 8rem;
 }

 .title {
  text-align: center;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.5;
 }

 .tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: "Poppins", sans-serif;
  column-gap: 3rem;
  margin-top: 7rem;

 }


 .tools-grid p {
  font-size: .9rem;
  font-weight: 300;
  margin-top: .6rem;
  text-align: center;

 }

 .tools-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
 }

 .tools-grid img:hover {
  transform: scale(1.05);
  overflow: hidden;
  transition: transform 0.5s ease-in-out; 
  cursor: pointer;
 }


 .song-title {
    background: #EEAECA;
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    padding: 8rem 1rem 4rem;
    text-align: center;
 }

  .song-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2rem ;
  }

  .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: center ;
    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: 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;
}


#listen {
  text-decoration: none;
  padding: .5rem 2rem;
  width: 300px;
  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:890px) {

  html {
    font-size: 44%;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    position: relative;
  }

  .nav-left {
    display: none;
  }

  .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: none;
    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 {
    font-size: 5rem;
    font-family: "Poppins", sans-serif;
  }

  #menu-icon {
    display: block;
  }

  #menu-icon-close {
    display: block;
  }

  #menu-icon-close:hover {
    transform: scale(1.4);
    
  }


  #logo span {
  font-size: 2rem;
  text-align: center;
  margin-left: 1.5rem;
  }
   .social-icons {
    display: none;
  }
 
  .hero {
    display: flex;
    flex-direction: column-reverse;
    order: -1;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    height: auto;
    padding: 13rem 4rem 5rem;
    gap: 4rem;
  }

  .producer-intro {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

  .producer-intro h2 {
    max-width: 85%;
    margin: 0 auto;
    font-size: 3rem;
    font-weight: 500;
    text-align: start;                      
  }


  .hero-img img {
    width: 45vw;
    margin-bottom: 2rem;
  }

  .hero-img {
    display: block;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 5rem auto;
    font-size: 2rem;
    padding: 1.5rem 4rem;
  }

  .btn-group a {
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  #course-btn {
    display: inline-flex;
    margin: 8rem auto;
  }

 .my-work {
    height: auto;
    text-align: center;
    padding: 3rem 4rem;
 }

 .my-work p {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3rem;
 }

 .making-music-vidoes {
  position: relative;
  height: auto;
 }


 .making-music-vidoes p {
   font-size: 3rem;
   width: 85%;
   margin: 0 auto;
   text-align: center;
   font-weight: 500;
  }
  
  .making-music-vidoes{ 
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
 }

  video {
    display: none;
  }

   .musical-instrument{
    height: auto;
  }

  #tools {
     display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    padding: 3rem 4rem 2rem;
  }

  #tool-tip{
    text-align: center;
    margin: 2rem auto;
    font-size: 2rem;
 }

  .tools-grid img {
    width: 100%;
    /*width: 270px;*/
    /*height: 155px;*/
    display: block;
  
  }
  
 .tools-grid img:hover {
    transform: none;
 }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
    width: 50%;
    margin: 5rem auto;
 }

 .song-title {
  display: block;
  padding: 10rem 4rem;
 }

  .song-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .song-title h1 {
    font-size: 3.5rem;
    color: #000;
  }

  .song-title p {
    font-size: 2.2rem;
  }
  .song-title img {
    width: 40vw;
  }

  .call-to-actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10rem;
  }

  .call-to-actions .spotify a i {
    text-decoration: none;
    font-size:  4rem;
    color: #1db954;
    margin-left: 1rem;
  }

   .call-to-actions .youTube a i {
    text-decoration: none;
    font-size:  4rem;
    color: #b2071d;
    margin-left: 1rem;
  }

   .call-to-actions button a img {
    width: 28px;
    margin-left: 1rem;
  }
 
  .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;
    }


 #listen {
    display: inline-block;
    padding: 1rem 0rem;
    margin: 1rem;
    align-items: center;
    text-align: center;
    border-radius: .5rem;
    font-weight: 500;
    font-size: 2rem;
    border: 2px solid var(--text-color);
    background: transparent;
  }

  #listen:hover {
    border: 2px solid var(--second-bg-color);
    background: var(--text-color);
  }

  footer {
    padding: 30px 0;
  }

  footer .social a {
    font-size:  28px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 30px;
    height: 30px;
    line-height: 32px;
    transition: 0.5s ease-in-out;
  }

footer .social a:hover {
  transform:  scale(1.1) translateY(-10px);
  
}
  footer ul {
    font-size: 12px;
    text-align: center;
  }

  

footer ul li {
  display: inline-block;
  padding: 10px 15px;
}


  footer .copyright {
    margin-top: 30px;
    font-size: 12px;
  }

}


@media screen and (min-width:891px) and (max-width: 1300px){
  
  html {
    font-size: 44%;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5rem;
  }

  .nav-left {
    display: none;
  }

  .nav-left {
    display: none;
  }

  .isActive {
    display: flex;
  }

  .js-navbar {
    position:absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 450px;
    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: 2.2rem;
    margin: 1rem 0;
    color: white;
  }

 
  #menu-icon-close {
    display: block;
  }

  #menu-icon-close:hover {
    transform: scale(1.4);
    
  }

   #menu-icon {
    display: block;
  }


  #logo {
    font-size: 5rem;
    font-family: "Poppins", sans-serif;
    display: block;
  }

 
  #logo span {
  font-size: 2rem;
  text-align: center;
  margin-left: 1.5rem;
  }
  
  .social-icons a{
    display: inline-flex;
    width: 5rem;
    height: 5rem;
    font-size: 5rem;
  }

 
  .hero {
    display: flex;
    flex-direction: column-reverse;
    order: -1;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    height: auto;
    padding: 13rem 4rem 5rem;
    gap: 4rem;
  }

  .producer-intro {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

  .producer-intro h2 {
    max-width: 85%;
    margin: 0 auto;
    font-size: 3rem;
    font-weight: 500;
    text-align: center;                      
  }


  .hero-img img {
    width: 40vw;
    margin-bottom: 2rem;
  }

  .hero-img {
    display: block;
  }

  .btn {
    display: inline-flex;
    text-align: center;
    margin: 5rem auto;
    font-size: 3rem;
    border-radius: 1rem;
    padding: 1.5rem 8rem;
  }

  #course-btn {
    display: inline-block;
    margin: 8rem auto;
  }

 .my-work {
    height: auto;
    text-align: center;
    padding: 10rem 5rem;
 }

 .my-work p {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3rem;
 }

 .making-music-vidoes {
  position: relative;
  padding: 15rem 5rem;
  height: auto;
 }


 .making-music-vidoes p {
   font-size: 3rem;
   width: 85%;
   margin: 0 auto;
   text-align: center;
   font-weight: 500;
  }
  
  .making-music-vidoes{ 
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
 }

  video {
    display: none;
  }

   .musical-instrument{
    height: auto;
  }

  #tools {
    padding: 8rem 5rem 5rem;
    text-align: center;
  }
  
  .title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5rem;
  }

  #tool-tip{
    text-align: center;
    margin: 2rem auto;
    font-size: 2rem;
 }

 .tools-img-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 5rem;
 }

  .tools-grid img {
    width: inherit;
    display: block;
  }
  
 .tools-grid img:hover {
    transform: none;
 }

  .tools-grid {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10rem;
 }

  .song-title {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    padding: 8rem 5rem 10rem;
    text-align: center;
  }

  .song-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:4rem ;
  }

  .song-title h1 {
    font-size: 3rem;
  }

  .song-title p {
    font-size: 2rem;
  }
  .song-title img {
    width: 20vw;
    margin-bottom: 2rem;
  }

  .call-to-actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3rem;
    padding: 2rem 0;
  }

  .call-to-actions .spotify a i {
    text-decoration: none;
    font-size:  4rem;
    color: #1db954;
    margin-left: 1rem;
  }

   .call-to-actions .youTube a i {
    text-decoration: none;
    font-size:  4rem;
    color: #b2071d;
    margin-left: 1rem;
  }

   .call-to-actions button a img {
    width: 28px;
    margin-left: 1rem;
  }
 
  .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;
    }


 #listen {
  width: 200px;
    padding: .5rem 2rem;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
    border: 2px solid var(--text-color);
    background: transparent;
  }

  #listen:hover {
    border: 2px solid var(--second-bg-color);
    background: var(--text-color);
  }

  footer {
    padding: 30px 0;
    display: block;
  }

  footer .social a {
    font-size:  25px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 32px;
    height: 32px;
    line-height: 32px;
    transition: 0.5s ease-in-out;
  }

footer .social a:hover {
  transform:  scale(1.1) translateY(-10px);
  
}
  footer ul {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  footer ul li a {
    border-bottom: 2px solid transparent;
    transition: 0.5s ease-in-out;
  }
  footer ul li a:hover{
    border-bottom: 2px solid var(--main-color);
  }

  footer .copyright {
    margin-top: 30px;
    font-size: 12px;
  }


  
}