@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
    margin: 0;
    padding: 0;
    background: url('../assets/about-background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Manrope', sans-serif;
    color: white;
  }
  
  .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: left;
    backdrop-filter: blur(1px);
    animation: fadeSlideUp 0.6s ease both;
  }
  
  .about-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
    border-radius: 12px;
    max-width: 1000px;
    animation: fadeIn 1.2s ease-out;
    align-items: center;
  }
  
  .text-section {
    animation: fadeSlideUp 0.6s ease both;
    flex: 2;
  }
  
  .text-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .text-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ddd;
  }
  
  .profile-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-pic {
    animation: fadeSlideUp 0.6s ease both;
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .socials {
    animation: fadeSlideUp 0.6s ease both;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  
  .socials a {
    color: white;
    opacity: 25%;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
  }
  
  .socials a:hover {
    opacity: 100%;;
  }

  .socials a i {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
  }
  
  
  @media (max-width: 768px) {
    .about-container{
      min-height: 120vh;
    }

    .about-content {
      flex-direction: column-reverse;
      align-items: center;
      text-align: center;
    }
  
    .text-section {
      text-align: center;
    }

    .profile-section{
      width: 200px;
    }
    
  }
  