*{
  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;
  cursor: pointer;
}

#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;
  cursor: pointer;

}


.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);
}


.hero {
  background-image: url(images/dj.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0;
  position: relative;
  padding: 5rem 0;
  z-index: 1;
}

.hero::before {
  content: '';
  background-image: linear-gradient(180deg, rgba(21, 22, 24, 0.1) 0%, #151618 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.lifestyle-wrapper {
  display: flex;
  padding: 5rem 0;
}

.bio {
  margin-right: 2rem;
  width: 800px;
  padding: 2rem 3rem;
}

.bio p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin: 2rem 0;
}

.title {
  background-image: linear-gradient(90deg, #f8ff00 10%, #3ad59f 100%);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0;
  z-index: 1;
}

.title::before {
  content: '';
  background-image: linear-gradient(180deg, rgba(21, 22, 24, 0.4) 0%, #151618 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.title h3 {
  font-size: 35px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #fff;
  text-align: center;
  margin: 2rem 0;
}

 .life{
  display: grid;
  column-gap: 2rem;
  row-gap: 1rem;
  padding: 1.5rem 2rem;
  grid-template-columns: repeat(4, 1fr);
 }

 #vid-wrapper {
  height: 72vh;
 }
 #vid-wrapper video {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 
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:1055px){


  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;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 2rem;
    gap: 4rem;
  }

  .bio {
    text-align: start;
    width: 85%;
    margin: 0 auto;
  }

  .title h3 {
    text-align: center;
    width: 85%;
    margin: 10rem auto;

  }

  .life {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;

  }


  footer {
    background-color: var(--bg-color);
    padding: 30px 0;
  }

  footer .social a {
    font-size:  30px;
    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: 14px;
    line-height: 1.2;
    text-align: center;
  }

  footer ul li {
    padding: 15px 15px;
  }

  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;
  }

}


@media screen and (min-width:1056px) 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;
  }

  
  .title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5rem;
  }

 
 

  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;
  }



  
}


