


:root{
    --branding-color: black;
    --secondary-color: white;
    --light-color:#343F45;
    --details-color: linear-gradient(90deg, rgb(235, 83, 128), rgb(139, 102, 241));
    --default-font-family: "Ancizar Sans", sans-serif;
    --secondary-font-family: "Big Shoulders Inline", sans-serif;
}

a {
    text-decoration: none;
    color: inherit; 
}

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


body{
    background: var(--branding-color);

}


/* HEADER */


.hero{
    background-color: var(--branding-color);
    text-align: left;
    color: var(--secondary-color);
    padding: 60px 20px;
   
}



.hero-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 250px; 
  }
  

  .profile-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgb(206, 133, 202), 0 8px 16px rgba(0, 0, 0, 0.15);
    margin: 0 auto 20px;
  }
  

h1{
    font-family: var(--secondary-font-family);
    font-weight: light 300;
    font-size: 70px;
    background: var(--details-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
    margin: 0;
    margin-left: 17px;
    text-align: left;

}

  

 h2{
    color: var(--secondary-color);
    font-weight: 300;
    font-size: 1.5rem;
    font-family: var(--default-font-family);
    font-size: 40px;
    line-height: 1.5;
    margin-left: 17px ;
    text-align: left;


}

/* ABOUT */

.about-h3{
    text-align: center;
    display: block;
    font-family: var(--default-font-family);
    color: var(--details-color);
    font-size: 40px;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: -80px;
}

.about-me{
    margin-left: 19px;

}

.col-md-6{

    padding: 100px 60px;
}

.about-me,
.skill {
    font-family: var(--secondary-font-family);
    font-weight: light 300;
    font-size: 70px;
    background: var(--details-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}



.stack{
    height: 4rem;
    width: 20rem;
    display: block;
    margin: 0 auto; 
    
}

.about-text{
  text-align:justify;
  color: var(--secondary-color);
  font-family: var(--default-font-family);
  font-size: 20px;
  line-height: 1.5;
  margin-left: 50px;
  

}


.fonts{
    color: rgb(139, 102, 241);;
}

.button-about{
    
    display: flex;
    justify-content: flex-start; 
    margin-left: 50px;
    
}



.container-about{
    padding-top: 80px; 
    padding: 60px 20px;
    
}


.content-container{
    padding: 60px 20px;
    

}

.content h1{
    font-size: 64px;
    line-height: 1.5;
    text-align: center;

}

.content h2{
    font-size: 18px;
    line-height: 1.5;
    color: var(--secondary-color);
    font-weight: 300;
    font-family: var(--default-font-family);
}

.content{
    margin: 30px;
}   


.content h3{
    font-size: 25px;
    text-decoration: underline;
    
    line-height: 1.5;
    color:  rgb(139, 102, 241);
    font-weight: 300;
    font-family: var(--default-font-family);
    margin: 20px 0 0;
}


.content h3:hover{
        color: rgb(206, 133, 202);

      }



.content p{
    font-size:20px;
     font-family: var(--default-font-family);
     color: var(--secondary-color);
     text-align: center;

}
    
    


h2{
    font-family: var(--default-font-family);
    font-weight: 300;
    font-size: 50px;
    color: var(--secondary-color);
}



p{
    font-size: 18px;
    font-family: var(--default-font-family);
    font-weight: 300;
    font-style: normal;
    color: var(--secondary-color);
    line-height: 1.5;
}


/* BUTTON */

.button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;

  }
  

.btn{
background-color: var(--light-color);
font-size: 12px;
font-weight: 500;
text-transform: uppercase ;
color: var(--secondary-color);
padding: 8px 15px;
border-radius: 30px;
transition: transform 0.5s;
line-height: 27px;
display: inline-block;
text-align: center;


}

.btn:hover{
    transform: scale(1.15);
    background-image: var(--details-color); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; 
}

.project-description{
    padding:120px 60px;
}

  .name{
    
    color: var(--secondary-color);
    font-family: var(--default-font-family);
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
    margin:0;
  }    
  
  .name:hover,
  .name:active {
    color: rgb(139, 102, 241);
  }

 

/* NAV BAR*/

.burger-menu {
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }


nav {
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
  .nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 50px;
    font-weight: 300;
    transition: color 0.3s ease;
    
  }
  
  .nav-list li {
    color: var(--secondary-color);
    font-family: var(--default-font-family);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    
  }
    
    .nav-list li:hover, 
    .nav-list li.active a {
        color:  rgb(139, 102, 241);
    }

    nav a {
        font-size: 20px;
        font-weight: 300;
        margin: 5px 0;
    }

.contact-info
 {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    font-family: var(--default-font-family);
}

.contact-info a {
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 300;
        font-family: var(--default-font-family);
        font-size: 20px;
    }

   

.contact-info a:hover {
        color: rgb(139, 102, 241);
        
    }





    footer {
        text-align: center;
      }
      
      .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        align-items: center;
        flex-direction: row;
        
      }
      
      footer a {
        color: var(--secondary-color);
        font-family: var(--default-font-family);
        font-weight: 300;
        font-size: 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      
      footer a:hover {
        color: rgb(139, 102, 241);
      }
      
      footer .shecodes-logo {
        width: 20px;
        height: 20px;
        object-fit: contain;
      }
      

.content-container{
            padding: 0;
            text-align: center;

        }
 .hero-tagline{
        font-size: 1.2rem;
    }
    

/*Home*/

@media (max-width: 768px) {
    .hero {
      padding: 40px 15px;
      text-align: center;
    }
  
    .hero-header {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .hero-text h1 {
      font-size: 35px !important;
      margin-left: 0 !important;
      text-align: center;
    }

    .hero-text h2{
      font-size: 25px;
      margin-left: 0 !important;
      text-align: center; 
    }
  
    .profile-photo {
      width: 200px;
      height: 200px;
      display: block;
    }
  }


  
  

@media (max-width: 900px) {
.project-description{
        padding: 0;
        text-align: center;
    }
}


@media (max-width: 576px) {
    footer a {
      font-size: 12px;
    }
  }
  
 
  
  /*NAV BAR*/


  @media (max-width: 768px) {
    .nav-list {
      display: none;
      flex-direction: column;
      background-color: black;
      padding: 20px;
      position: absolute;
      top: 80px;
      right: 30px;
      z-index: 1000;
      border-radius: 10px;
    }
  
    .nav-list.active {
      display: flex;
    }
  
    .burger-menu {
      background: none;
      border: none;
      color: white;
      font-size: 24px;
    }
  }
  
 
  @media (max-width: 768px) {
    .col-md-6 {
      padding: 30px 15px;
      text-align: center;
    }
  
    .about-text {
      margin-left: 0;
      padding: 0 10px;
      text-align: left;
    }
  
    .button-about {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin: 15px 0;
      text-align: center;
    }
    
   
  
    .stack {
      width: 100%;
      height: auto;
      max-width: 300px;
    }
  
    .about-me,
    .skill {
      font-size: 40px;
      text-align: center;
    }
  
    .about-h3 {
      font-size: 25px;}
  
    .h1 {
      font-size: 35px !important;
      margin-left: 0 !important;
      text-align: center;
    }
  }
  
  .h2{
    font-size: 25px;
    margin-left: 0 !important;
    text-align: center;
  }


