.about-section {
  width: 100%;
  height: 80dvh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 6rem;
  box-sizing: border-box;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ----- TEKS KIRI ----- */
.about-text {
  flex: 1;
  color: #333;
}

.section-label {
  letter-spacing: 1px;
  font-weight: 500;
  color: #777;
  position: relative;
  margin-bottom: 1.5rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #999;
  margin-left: 1rem;
  vertical-align: middle;
}

.about-heading {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dropcap {
  font-family: "Times New Roman", serif;
  font-size: 3.5rem;
  color: #c6a76b;
  line-height: 1;
  margin-right: 0.5rem;
  font-weight: 400;
}

.about-heading p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #111;
  margin: 0;
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  max-width: 95%;
}

/* ----- GAMBAR KANAN ----- */
.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* geser gambar ke kanan */
  align-items: center;
  position: relative;
}

.image-frame {
  position: relative;
  width: 90%; /* biar tidak nempel ke kanan */
  max-width: 520px;
}

/* frame offset */
.image-frame::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 90%;
  height: 100%;
  border: 1.5px solid #111;
  z-index: 0;
  border-radius: 6px;
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* ============================= */
/* ✅ Responsive Layout Switch   */
/* ============================= */
@media (max-width: 993px) {
  .about-section {
    height: auto;
    padding: 4rem 2rem;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

  .section-label {
    text-align: start;
  }

  .about-heading {
    justify-content: center;
  }

  .about-description {
    max-width: 100%;
  }

  .about-image {
    width: 100%;
    justify-content: center;
  }

  .image-frame {
    width: 90%;
    max-width: 420px;
  }

  .image-frame::before {
    top: -15px;
    right: -15px;
  }
}

@media (min-resolution: 115dpi) and (max-resolution: 140dpi) {
    .about-section{
        height: 140dvh;
    }
}
