body {
  font-family: avenir-next-lt-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

/* Headere */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 4rem;
  background-color: white;
  color: black;
  position: sticky;
  top: 0;
   z-index: 10;
}

.logo img {
    width: 200px;
  height: auto;
  transition: transform 0.2s ease;
}

.logo img:hover{
    transform: translateY(-2px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.nav-links a {
  text-decoration: none;
  color: black;
  transition: color 0.3s, transform 0.3s;
  font-weight: 600;
  display: inline-block;
}

.nav-links a:hover {
  color: #C23267;
  transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Sectioms */
section {
  padding: 2rem;
}

/* Home */
#home{
margin: 0 auto;
text-align: center;
width: 90%;
border-top: 2px solid #ddd;
border-bottom: 2px solid #ddd;
padding: 50px 0;
}

#home h1{
    margin: 0 auto;
    width: 35rem;
    font-size: 28px;
}

#home p{
    padding-top: 20px;
    margin: 0 auto;
    width: 35rem;
    font-size: 20px;
}

.home-pink{
color: #C23267;
}

/* Work */
#work{
  padding: 4rem 4rem;
}

#work h2{
font-family: mencken-std-head, sans-serif;
font-size: 32px;

}
.portfolio{
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 40px;
   z-index: -1;
  
}

.work-item {
    position: relative;
  aspect-ratio: 4 / 3; 
  overflow: hidden;
  display: block;
  border-radius: 5px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  display: block;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(194, 50, 103, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-item:hover .overlay {
  opacity: 1;
}
.overlay h3{
    color: white;
    width: 180px;
    text-align: center;
}

/* Contact */
section#contact{
    padding: 0;
}
.contact-bg{
    width: 100%;
    height: 300px;
    background-color: #C23267;
     display: flex;
        justify-content: center;
   align-items: center;
   gap: 20px;
}
.contact-01{
    font-family: mencken-std-head, sans-serif;
    font-size: 32px;
    color: white;
}

.contact-02{
    color: white;
    font-size: 20px;
    width: 350px;
}

.email-link{
    color: white;
    text-decoration: none;
    font-weight: 700;
}
.resume-btn-container{

    margin-top: 30px;
}
.resume-btn{
    margin-top: 100px;
    padding: 15px 40px;
    background-color: white;
    text-decoration: none;
    color: #C23267;
    font-weight: 600;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: white;
  color: black;
}

/* Left */
.footer-left p {
  font-size: 0.9rem;
}

/* Center (logo) */
.footer-center img {
  height: 100px;
  transition: transform 0.2s ease;
}

.footer-center img:hover {
  transform: translateY(-2px);
}

/* Right (social icons) */
.footer-right a {
  margin-left: 1rem;
  
}

.footer-right img {
  height: 36px;
  width: 36px;
  transition: transform 0.2s ease;
}

.footer-right img:hover {
  transform: translateY(-2px);
}


/* Portfolio Page */
.hero img{
    width: 100%;
    height: auto;

}
.softwares{
    margin-left: auto;
}
.portfolio-buttons-softwares{
    margin: 0 auto;
    display: flex;
    max-width: 1400px;
    padding: 1.5rem 2rem;
    align-items: center;
}

.portfolio-buttons-softwares img{
     width: 36px;
  height: 36px;
  object-fit: contain;
}

.portfolio-buttons-softwares img:nth-child(1){
      width: 100px;
      height: auto;
}

.portfolio-links-btn button {
  padding: 10px 20px;
  background-color: #C23267;
  font-weight: 600;
  border: none;
  font-size: 16px;
  
}

.portfolio-links-btn a{
text-decoration: none;
color: white;
}

/* Portfolio Page Description */

.description{
    margin: 0 auto;
    max-width: 1400px;
    padding: 1rem 2rem;
    margin-top: 30px;

}
.description h3{
    font-weight: 400;
    font-size: 16px;
}
.description h1{
font-family: mencken-std-head, sans-serif;
font-size: 32px;
padding: .5rem 0;
}

.description p{
    max-width: 800px;
}

.description-client{
    margin-top: 10px;
}

.work-gallery{
    max-width: 1400px;
     margin: 0 auto;
}
.half-half{
display: flex;
gap: 10px;
max-width: 100%;

}
.half-half img{
    flex: 1;
    min-width: 0;
    height: auto;
    margin-top: 10px;
    object-fit: cover;
}

.full img{
flex: 1;
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    object-fit: cover;

}


.full2 img{
flex: 1;
width: 100%;
    height: auto;
    margin-top: 10px;
   

}

.navigation-bottom-btn{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    padding: 2rem 4rem;
}

.navigation-bottom-btn button{

  background-color: #C23267;
  font-weight: 600;
  border: none;
  font-size: 16px;
  width: 120px;
  height: 40px;
  transition: transform 0.2s ease;
  
}
.navigation-bottom-btn button:hover{
    transform: translateY(-2px);
}

.navigation-bottom-btn a{
text-decoration: none;
color: white;
}

.softwares .html-icon{
    width: 52px;
    margin: 0 5px;

}

@media (max-width: 768px) {

/* Header */  
  .nav-links {
    position: absolute;
    right: 0;
    top: 160px;
    background: white;
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    padding: 30px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  /* Body */  
  .portfolio {
    grid-template-columns: 1fr;
  }
  .portfolio-buttons-softwares{
    flex-direction: column-reverse;
  }
.softwares{
    margin: auto 0;
    padding-bottom: 20px;
}
.half-half{
    flex-direction: column;
}
  /* Foooter */

    .footer {
    flex-direction: column-reverse;
    gap: 1rem;
    text-align: center;
  }

  .footer-right a {
    margin: 0 0.5rem;
  }
}