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

  body{
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: black;
    font-weight: 600;
    
  }


  .navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 8rem;
    padding-left: 7rem;
  }

  .navbar .left img{
    width: 100px;
    height: 100px;
  }

  .navbar .left{
    padding-top: 3rem;
  }

  .navbar .right{
    padding-top: 1.8rem;
    display: flex;
    align-items: center;
    gap: 6rem;
  }

  .navbar .right a{
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
  }

  .navbar .right a:hover{
    color: #FFCC6D;
    text-decoration: none;
    font-size: 1.3rem;
  }

  .menu-button {
    position: fixed;
    z-index: 10;
    top: 2rem; 
    right: 1.25rem; 
    background-color: transparent;
    color: white;
    font-size: 1.5rem;
    padding: 0.3rem 0.3rem; 
    border: none;
    cursor: pointer;
    border-radius: 0.3125rem; 
    display: none; 
  }
  
  .menu-button:hover {
    color: #FFCC6D;
  }
  
  .sidebar {
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap:1rem;
    position: fixed;
    top: 0;
    right: -15.625rem; 
    width: 15.625rem; 
    height: 100%;
    background-color: black;
    color: white;
    padding: 1rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: none;
  }
  
  .sidebar a {
    font-size: 1rem;
    text-decoration: none;
    color: white;
    margin: 0.5rem 0; 
    padding-top: 1rem;
    padding-left: 1rem; 
  }
  
  .sidebar a:hover {
    color: #FFCC6D;
  }
  
  
  .sidebar.open {
    right: 0; 
  }

  .bottom{
    margin-top: 6rem;
  
  }
  
  .icons{
    margin-top: 5rem;
    justify-content: center;
    text-align: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap:15rem;
    padding-bottom: 4rem;
  }
  
  
  .icons img{
    width: 2.3rem;
    height: 2.3rem;
    opacity: 0.7;
    transition-duration: 200ms;
  }
  
  .icons img:hover{
    width: 2.33rem;
    height: 2.33rem;
    opacity: 1;
  }
  
  .copyright{
    color: white;
    width: 100%;
    display: flex;
    padding-top: 0.2rem;
    padding-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 2rem;
  }

  .section1{
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5rem;

  }

  .section1 img{
    mix-blend-mode: hard-light;
  }

  .line{
    margin-bottom: 9rem;
      display: flex;
      justify-content: center;
     
  }

  .section2{
      padding: 9rem;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20rem;
      background-image: url("assets/image(13).png");
  }

  .section3{
      padding: 9rem;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20rem;
  }

  .title{
      font-size: 6rem;
      color: #FFCC6D;
      max-width: 20%;
      text-align: center;
      font-weight: 600;
  }

  .content{
      font-size: 1.5rem;
      font-weight: 400;
      max-width: 30%;
      display: flex;
      flex-direction: column;
      gap: 3rem;

      opacity: 0;
      transform: translateX(-2rem);
      transition: all 0.8s ease-out;
      transition-delay: 0.2s;
  }

  .content.animate{
    opacity: 1;
    transform: translateX(0);
  }
  
  .content strong{
      color: #FFCC6D;
      font-weight: 400;
  }

  .content li{
      padding-bottom:1rem;

  }

  .content ul{
      padding-top: 1rem;
  }

 

  @media (max-width: 1200px) {
    
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(5px); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9; 
    
  }
  
  .overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  .navbar {
    padding-left: 1.5rem;
    margin-bottom: 0rem;
    }
  
  .navbar .left{
      padding-top: 1rem;
    }

  .navbar .left img {
    width: 80px;
    height: 80px;
  }

  .navbar a{
    display: none;
  }


  .section1{
    max-width: 100%;
    flex-direction: column;  
    padding: 4rem 3rem;
    gap: 1rem;
    align-items: normal;
   
  }

  .section2{
    max-width: 100%;
    flex-direction: column;  
    padding: 4rem 3rem;
    gap: 1rem;
    align-items: normal;
  }

  .section3{
    max-width: 100%;
    flex-direction: column;  
    padding: 4rem 3rem;
    gap: 1rem;
    align-items: normal;
  }

  .title{
  font-size: 2.5rem;
  max-width: 100%;
  text-align: left;
  }

  .content {
  max-width: 100%; 
  font-size: 1.3rem; 
  gap: 2rem;
  }



  .section2 {
  background-size: cover; 
  }

  .section1 img{
    display: none;
  }

  .line {
      display: none;
      
  }

  .icons {
      flex-direction: row; 
      gap: 1rem;
      padding-top: 0rem;
      padding-bottom: 1rem;
    }

    .icons img {
      width: 2rem;
      height: 2rem;
    }


  
  .menu-button {
      display: block; 
  }
    
  .sidebar {
    display:flex;
    width: 12.5rem; 
  }

  .sidebar.open {
    right: 0; 
  }
  
  .copyright {
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
  
@media (max-width: 768px) {
  .section1{
    padding-top: 3rem;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 4rem;
  }

  .section2{
    padding: 4rem 2rem;
  }

  .section3{
    padding: 4rem 2rem;
  }

  .content{
    font-size: 1rem;
  }
}
