/* ========== TENTANG AUKYCLOTH PAGE ========== */
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

/* ======= SECTION ======= */
.about-section {
  background: #fff;
  padding: 150px 20px 80px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* ======= TEKS ======= */
.about-text {
  flex: 1 1 550px;
}

.about-text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #111;
  /* 🔹 hapus garis bawah */
}

.about-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* ======= VISI & MISI ======= */
.about-vision,
.about-mission {
  margin-top: 35px;
}

.about-vision h2,
.about-mission h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  /* 🔹 hapus garis bawah */
}

.about-vision p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

.about-mission ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.about-mission ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #444;
  line-height: 1.6;
}

.about-mission ul li::before {
  content: "•";
  color: #000;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* ======= GAMBAR ======= */
.about-image {
  flex: 1 1 450px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.07);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image img {
    max-width: 400px;
  }
}