
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: 100vh;
  display: 100vw;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  scroll-margin-top: var(--nav-height);
    
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

header {
background-color: greenyellow;
position: sticky;
top: 0;
}

.navbar {
  min-height: 80px;
  width: 100hw;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  background-color:rgba(172, 255, 47, 0.55);
  padding: 0 24px;



}


/* Menu */

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;

}

.nav-branding {
    font-weight: 600;
    font-size: 30px;
}

.nav-link {
  transition: 0.7s;
}

.nav-link:hover {
  color: purple;
  font-weight: 700;
  font-size: 32px;
}

/* CONTACTS */

.logo-social {
  border-radius: 50%;
  padding: .5rem;
  border-color: 1px solid;
}

/* hamburger-menu */


.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition:  all 0.3s ease-in-out;
  transition:  all 0.3s ease-in-out;
  background-color: black;
}

br {
  display: none;
}

@media screen and (max-width: 756px) {

  nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    gap: 0px;
    flex-direction: column;
    background-color: rgb(172, 255, 47);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-bottom-right-radius: 15px ;
    border-bottom-left-radius: 15px ;

  }

  .nav-item {
    margin: 16px 0;
  }

    .nav-menu.active{
     right: 0px;
     
  }

    .nav-item:hover {
    color: purple;
    transition-delay: 3s;
  }

  .hero-sec br{
    display: block;


  }
  
  .social {
    display: block;
  }

}
  


/* main section */


.hero-sec {
  background-image:linear-gradient(rgba(2, 65, 48, 0.941), rgba(82, 4, 86, 0.5)),  url(./banner.JPG);
  height: 100vh;
  width: auto;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-sec {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 300px;
  
}

.hero-sec h1 {
  color: rgb(248, 145, 71);
  font-size: 5rem;
  text-align: center;
  justify-content: center;
  align-items: center;

}
.hero-sec p{
font-size: 1.5rem;
color: white;
}

.btn-hero {
  font-size: 15px;
  font-weight: bold;
  background-color: greenyellow;
  height: 50px;
  width: 150px;
  border-radius: 15px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .hero-sec {
   
    font-size: 1rem;
    padding-top: 100px;
    height: 95vh;
    
  }
  .hero-sec h1{
    font-size:3rem;
  }
  .hero-sec p{
    font-size:1rem;
  }
}

#about, #experience, #work, #projects, #skills, #brands, #digital-product {
  width: 90%;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.about  p{
  padding: 30px;
  width: 60%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
}



.experience-item, .work-item, .about  p{
  background-color: rgba(245, 222, 179, 0.436);
  width: 700px;
  text-align: left;
  margin: 0 auto;
  line-height: 30px;
  font-size: 20px;
  padding: 20px;
  padding-left: 2px;
  border-radius: 15px;
}

@media screen and (max-width: 576px) {
 .about p{
  font-size: 15px;
  width: 400px;
  padding: 10px;
  height: 200px;
  width: 350px;
  margin-right: 30px;
}

 .experience-item{
  font-size: 14px;
  width: 400px;
  padding: 10px;
  height: 500px;
  width: 350px;
  margin-right:10px;
}

 .work-item{
  font-size: 14px;
  width: 400px;
  padding: 10px;
  height: 380px;
  width: 350px;
  margin-right:10px;
}


}

.projects {
  width: 52%;
}

.project-img {
  width: 80%;
  border: 4px solid rgba(23, 36, 3, 0.58);
}

.projects p{
    width: 80%;
  margin: 0 auto;
  padding-bottom: 40px;
}

@media screen and (max-width: 576px) {
.projects, .project-img, .projects p{
  width: 100%;
  font-size: 15px;
  text-align: left;
}

}

#skills {
  width: 80%;
}
.skill {
  display: flex;
  border: 2px solid greenyellow;
  background-color: rgba(245, 222, 179, 0.436);
  border-radius: 20px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;

}

.skill-item {
  background-color: orange;
  border-radius: 15px;
  border: none;
  margin:10px;
  height: 50px;
  padding:15px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 576px) {
 .skill{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  gap: 30px;
  justify-content: center;
 }


}


.brand-logo {
  display: flex;
  height: 100px;
   gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.logo-item {
  border: 1px solid purple;
  border-radius: 50%;
  width: 100px;
  padding: 10px;
 
}

.audio {
  display: none;
}

.digital-product-container {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  padding-top: 20px;
}

@media screen and (max-width: 576px) {
  .digital-product-container { 
   width: 300px;
   display: flex;
   flex-direction: column;
    
  }
}

.digital-product-item {
  background-color: orange;
  gap: 30px;
  height: 40px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}
.gallery {
  color: black;
  text-align: center;
  margin-top: 20px;
  width: 90%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;


}

.gallery-container {
  width: 100%;
  display: flex;
  height: auto;
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
  padding-top: 10px;
  padding-right: 10px;
  
  
  
}

@media screen and (max-width: 576px) {
  .gallery-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90vw;
  }

}

.gallery-item {
  height: 355px;
  justify-content: space-around;
  
  border-radius: 20px;
  ;

}

@media screen and (max-width: 576px) {
  .gallery-item {
    width: auto;
    height: auto;

  }
}




@media screen and (max-width: 576px){
  .issue {
    width: auto;
    height: auto;
  }

  .issue-container {
    display: flex;
    flex-direction: column;
  }
}

/* scrollbar */



footer {
  color: white;
  display: block;
  justify-content: center;
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  bottom: 0;
  background-color:rgba(0, 0, 0, 0.674);
}
