

.aboutme {
  
  min-height: 80vh; 
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 80px;
}


.desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase; 
  font-size: 16px; 
  line-height: 1.8;
  letter-spacing: 1px;
  
  
  max-width: 420px; 
  margin: 0 auto; 
}

.desc p {
  color: #e0e0e0;
  
  
  text-align: justify; 
  hyphens: auto; 
  
  margin-bottom: 25px;
}


.desc p.divider {
  color: var(--primary, red);
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}


.desc p:nth-of-type(3) {
  text-align: center;
}


.email {
  color: #e0e0e0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.email:hover {
  color: var(--primary, red);
  border-bottom: 1px solid var(--primary, red);
}


.logo {
  margin-top: 10px;
  font-size: 20px;
  text-align: center; 
}

.logo a {
  color: #e0e0e0;
  transition: color 0.3s ease;
  cursor: pointer;
}

.logo a:hover {
  color: var(--primary, red);
}


.my-img {
  display: flex;
  justify-content: flex-end;
}

.my-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  
  border-radius: 0; 
  
  
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.5s ease;
}

.my-img img:hover {
  filter: grayscale(0%) contrast(1);
}




@media (max-width: 900px) {
  .aboutme {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 40px 30px;
    min-height: auto; 
  }
  
  .desc {
    max-width: 600px; 
  }

  .my-img {
    justify-content: center;
    order: -1; 
  }
}


@media (max-width: 768px) {
  .aboutme {
    padding: 20px 20px 60px 20px;
    gap: 40px;
  }
  
  .desc {
    font-size: 13px; 
    letter-spacing: 0.5px;
  }

  .desc p {
    text-align: center; 
  }

  .my-img img {
    max-width: 70%; 
  }
}