.about-header {
  color: var(--white);
  text-align: center;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 4rem;
  background: url(../../assets/images/Gemini_Generated_Image_cp5hwlcp5hwlcp5h.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width:720px) 
{
  .about-header
  {
    background: url(../../assets/images/Gemini_Generated_Image_165qwz165qwz165q.png);
     background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    max-height: 250px;
  }
  .about-header h1
  {
    padding-top: o;
    font-size: 50px;
  }
  .about-header p
  {
    margin-bottom: 130px;
  }
}

.about-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: white;
  /*margin-bottom: 0.75rem;*/
  padding-top: 40vh;

}

.about-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
}

.about-container {
  padding: 4rem 5%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.about-card {
  background: var(--cream);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 2px 2px 15px 2px rgb(82, 150, 82);
}
.about-card h2 {
  color: var(--espresso);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.about-card h2 i {
  color: var(--accent);
}

.about-card p {
  color: var(--espresso-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.social-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--light);
  /*8color: var(--dark);*/
  color: black;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  animation: float 2s infinite ease-in-out;
  border: 1px solid black;
}
@media (max-width:720px)
{
  .social-btn
  {
    height: 54px;
    width: 54px;
  }
}

.social-btn:nth-child(2) {
  animation-delay: 0.5s;
}

.social-btn:nth-child(3) {
  animation-delay: 1s;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
    background-color: rgb(91, 177, 91);
  }

  100% {
    transform: translateY(0px);
  }
}