.site-footer {
    background-color: #0d1117;
    color: #f0f0f0;
    padding: 50px 100px;
    padding-bottom: 30px;
    font-family: 'Castoro Titling', sans-serif;
    
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-logo h2 {
    font-family: "Castoro Titling", serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #61dafb;
  }

 
  
  .footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #61dafb;
  }
  
  .footer-socials a img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: invert(100%);
    transition: transform 0.3s;
  }
  
  .footer-socials a img:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #999494;
  }

  @media (max-width: 600px) {
    .footer-logo h2 {
      font-size: 14px;
    }
    .footer-logo p {
      font-size:10px ;
    }
    .footer-links a {
      font-size: 10px;
    }
  }
  