/* ========================================================================
   Base Styles
   ======================================================================== */

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 60px 0;
  box-sizing: border-box;
}

/* ========================================================================
   Section 1: Image + Text
   ======================================================================== */
.about-section-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Gambar */
.about-section-1 .image {
  flex: 1 1 45%;
}

.about-section-1 .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Teks */
.about-section-1 .text {
  flex: 1 1 45%;
  text-align: left;
}

.about-section-1 .text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  background: linear-gradient(to right, #29c96c 60%, #112f1d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-section-1 .text h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-section-1 .text p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #ff6600;
  line-height: 1.6;
}

/* ========================================================================
   Section 2: Our Story
   ======================================================================== */
.about-section-2 {
  position: relative;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
  color: #000;
}

.about-section-2::before,
.about-section-2::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  opacity: 0.3;
  top: -50px;
  z-index: 1;
}

.about-section-2::before {
  background: radial-gradient(circle at center, #ff6f91, transparent 70%);
  left: -150px;
}

.about-section-2::after {
  background: radial-gradient(circle at center, #845ec2, transparent 70%);
  right: -150px;
}

.about-section-2 h2 {
  position: relative;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 10px;
  z-index: 2;
  display: inline-block;
  font-weight: 400;
}

.about-section-2 .divider {
  position: relative;
  width: 200px;
  height: 2px;
  background-color: #FF6600;
  margin: 10px auto 40px;
  z-index: 2;
}

.about-section-2 p {
  position: relative;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
  z-index: 2;
  text-align: left;
}

/* ========================================================================
   Section 3: Our Team
   ======================================================================== */
.about-section-3 {
  background: #fff;
  text-align: center;
  padding: 80px 0;
}
.about-section-3 h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 10px;
  font-weight: 400;
}
.about-section-3 .divider {
  width: 200px;
  height: 2px;
  background-color: #FF6600;
  margin: 20px auto 40px;
}

/* Grid Anggota Tim */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.team-member {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.team-member img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.team-member p {
  margin-top: 12px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.4;
  color: #333;
}

/* ========================================================================
   Media Queries
   ======================================================================== */

/* Large tablets / small desktops */
@media (max-width: 992px) {
  .about-section-1 {
    gap: 30px;
  }

  .about-section-1 .text h2 {
    font-size: clamp(1.3rem, 3vw, 1.4rem);
  }

  .about-section-1 .text h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

/* Tablets / small screens */
@media (max-width: 768px) {
  .about-section-1 {
    flex-direction: column;
    text-align: center;
  }

  .about-section-1 .image {
    order: 0;
    margin-bottom: 20px;
    margin-top: 50px;
  }

  .about-section-1 .text {
    order: 1;
    flex: 1 1 100%;
    padding: 0 5%;
  }

  .about-section-2 {
    padding: 80px 5%;
  }

  .about-section-2 p {
    max-width: none;
    margin: 0 auto 20px;
    padding: 0 5%;
    box-sizing: border-box;
  }

  .about-section-2 .divider {
    margin: 20px auto 40px;
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 10%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .container {
    padding: 40px 0;
  }

  .about-section-1 .text h2 {
    font-size: clamp(1.1rem, 4vw, 1.2rem);
  }

  .about-section-1 .text h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .about-section-1 .text p,
  .about-section-2 p {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .about-section-2 h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .about-section-2 .divider {
    width: 80px;
    height: 2px;
    margin-bottom: 20px;
  }

  .about-section-2::before,
  .about-section-2::after {
    width: 200%;
    height: 200%;
    top: -50%;
  }

  .team-grid {
    gap: 20px;
  }

  .about-section-3 {
    padding: 60px 0;
  }

  .about-section-3 h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .team-member {
    max-width: 100%;
  }
}