/* =========================
   About Section
   ========================= */
.about {
  background: url("/img/about_bg.png") no-repeat center right;
  background-size: contain;
  margin-left: 100px;
  margin-right: 100px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.about-text {
  flex: 1 1 50%;
  font-weight:lighter;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.about-text p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-link {
  font-size: 1rem;
  color: grey;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight:lighter;
}

.about-link:hover {
  color: #0bb6c4;
}

.about-image {
  flex: 1 1 50%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Mobile Responsive (About)
   ========================= */
@media (max-width: 768px) {
  .about {
    margin-left: 0;
    margin-right: 0;
    padding: 0rem 1rem;
    background: none; /* remove bg png */
  }

  .about-container {
    flex-direction: column-reverse; /* show globe first, text on top */
    gap: 2rem;
    text-align: center;
    position: relative;
  }

  .about-text {
    flex: 1 1 100%;
    position: relative;
    z-index: 2;
    margin-top: -60px;
  }

  .about-text h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-link {
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 1rem;
  }

  .about-image {
    .about-image {
        flex: 1 1 100%;
        text-align: center;
        position: absolute;
        top: -80px;
        left: 51%;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.55;
    }
  }

  .about-image img {
    max-width: 350px !important
    height: auto;
  }
}
