/* =============================================
   THE ICON! CREATIVE SERVICES – about.css
   Spesifik untuk about.php
   Requires: style.css
   ============================================= */

/* =============================================
   HERO
   ============================================= */

.about-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: visible; /* ← visible supaya OUR STORY bisa overlap */
  padding: 220px calc((100vw - var(--container)) / 2 + 20px) 120px;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.3) 90%,
    rgba(13,13,13,1) 100%  /* ← fade ke hitam di bawah */
  );
}

/* Content: teks kiri + tombol kanan */
.about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 130px;
}

.about-hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: -20px;
}

.about-hero__title span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 62px;
  line-height: 1.15;
}

.about-hero__title--white { color: #ffffff; }
.about-hero__title--lime  { color: var(--lime); }

.about-hero__buttons {
  display: flex;
  flex-direction: row;  /* ← horizontal */
  gap: 12px;
  flex-shrink: 0;
}

.about-hero__buttons .btn {
  font-size: 20px;
  padding: 14px 36px;
  white-space: nowrap;
}

/* =============================================
   OUR STORY
   ============================================= */

.about-story {
  background: #0d0d0d;
  padding: 0 0 20px;  /* ← tidak ada padding atas, header overlap hero */
}

.about-story__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.about-story__header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -120px;
  padding-top: 0;
  transform: translateY(-50%); /* ← naik ke atas, overlap dengan hero */
}

@media screen and (max-width: 1366px) {
	.about-story__header {
	  margin-top: -100px;
	}
}

.about-story__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 0.85;
}

.about-story__title--white  { color: #fff; display: block; }
.about-story__title--purple { color: var(--purple); display: block; }

.about-story__items {
  display: flex;
  flex-direction: column;
  gap: 0; /* ← rapat, tidak ada spasi */
  margin-top: -60px;
}

/* Story item */
.story-item {
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 30px; /* ← hapus rounded supaya rapat */  
  padding: 45px 48px;
}


.story-item--lime {
  background: var(--lime);
}

.story-item--purple {
  background: var(--purple);
}

.story-item__year {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 90px;
  line-height: 1;
  flex-shrink: 0;
  min-width: 180px;

  align-self: flex-start;
  margin-top: 0;
  padding-top: 0;  
}

.story-item--lime   .story-item__year { color: var(--purple); }
.story-item--purple .story-item__year { color: var(--lime); }

.story-item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-item__label {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.story-item--lime   .story-item__label { color: var(--purple); }
.story-item--purple .story-item__label { color: var(--lime); }

.story-item__content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: justify;
}

.story-item--lime   .story-item__content p { color: #222; }
.story-item--purple .story-item__content p { color: rgba(255,255,255,0.9); }

/* =============================================
   THE FOUNDERS
   ============================================= */

.about-founders {
  background: #0d0d0d;
  padding: 80px 0 1px;
}

.about-founders__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.about-founders__header {
  text-align: center;
  margin-bottom: 60px;
}

.about-founders__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 90px;
  line-height: 0.85;
}

.about-founders__title--white  { color: #fff; display: block; }
.about-founders__title--purple { color: var(--purple); display: block; }

/* Founder card */
.founder-card {
  display: flex;
  align-items: flex-end;
  margin-bottom: 100px;
  position: relative;
}

/* Founder 1 — foto kanan overflow */
.founder-card--right {
  justify-content: flex-start;
}

.founder-card--right .founder-card__content {
  background: #fff;
  border-radius: 30px;
  padding: 36px 300px 36px 40px; /* kanan lebih lebar untuk foto */
  flex: 1;
}

.founder-card--right .founder-card__photo {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 350px;
}

/* Founder 2 — foto kiri overflow */
.founder-card--left {
  justify-content: flex-end;
}

.founder-card--left .founder-card__content {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px 36px 350px; /* kiri lebih lebar untuk foto */
  flex: 1;
}

.founder-card--left .founder-card__photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
}

.founder-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.founder-card__role {
  font-size: 20px;
  font-weight: 700;
  color: #555;
  margin-bottom: 4px;
}

.founder-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 12px;
}
.founder-card__name--pink {
  color: var(--pink);
}

.founder-card__bio {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}

/* =============================================
   STATS
   ============================================= */

.about-stats {
  background: var(--pink);
  padding: 60px 20px;
}

.about-stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.about-stats__number {
  font-family: 'Poppins', sans-serif;
  font-size: 90px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}

.about-stats__label {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* overide bg dan text-align dari clients.css */

.clients {
  background-color: #fff !important;  
  background-image: linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px) !important;
  background-size: 40px 40px;    
}

.clients__title--white {
  color: #111 !important;
}

.clients__title--orange {
  color: var(--purple) !important; /* sesuaikan */
}

.clients__header {
  text-align: center !important;
}

.clients__strip { 
  background: #F0F0F0 !important;
}

.clients__arrow {
  border-color: #ccc !important;
  color: #ccc !important;
}

.clients__arrow:hover {
  border-color: var(--purple) !important;
  color: var(--purple) !important;
}

.clients__dot {
  background: #ccc !important;
}

.clients__dot.active {
  background: #999 !important;
  transform: scale(1.8);
}  

/* =============================================
   PICK YOUR MOVE — override bg ke lime
   ============================================= */

.pickurmove {
  background: var(--lime);
  padding: 70px 0;
  text-align: center;
}

.pickurmove__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pickurmove__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.85;
}

.pickurmove__title span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 64px;
}

.pickurmove__title--black  { color: #111; }
.pickurmove__title--purple { color: var(--purple); }

.pickurmove__buttons {
  display: flex;
  gap: 16px;
}

.pickurmove__buttons .btn {
  font-size: 20px;
  padding: 14px 40px;
  border-radius: 40px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ===== TABLET 768px ===== */
@media (max-width: 768px) {

  /* HERO */
  .about-hero {
    min-height: auto;
    padding: 140px 24px 80px;
    overflow: hidden;
  }

  .about-hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 60px;
  }

  .about-hero__title { margin-left: 0; }
  .about-hero__title span { font-size: 40px; }

  .about-hero__buttons {
    flex-direction: row;
    gap: 10px;
  }

  .about-hero__buttons .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* OUR STORY */
  .about-story__header {
    margin-top: -60px;
    transform: translateY(-30%);
  }

  .about-story__title { font-size: 64px; }

  .about-story__items { margin-top: -30px; }

  .story-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .story-item__year   { font-size: 60px; min-width: auto; }
  .story-item__label  { font-size: 18px; }
  .story-item__content p { font-size: 15px; }

  /* FOUNDERS */
  .about-founders { padding: 60px 0 1px; }
  .about-founders__title { font-size: 52px; }
  .about-founders__header { margin-bottom: 40px; }

  .founder-card {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .founder-card--right .founder-card__content,
  .founder-card--left  .founder-card__content {
    padding: 28px 24px;
    border-radius: 20px;
    width: 100%;
  }

  .founder-card--right .founder-card__photo,
  .founder-card--left  .founder-card__photo {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: 200px;
    margin: 0 auto;
    order: -1; /* ← foto di atas konten */
  }

  .founder-card__role { font-size: 14px; }
  .founder-card__name { font-size: 26px; }
  .founder-card__bio  { font-size: 14px; }

  /* STATS */
  .about-stats { padding: 50px 20px; }
  .about-stats__inner { flex-wrap: wrap; gap: 24px; }
  .about-stats__item  { flex: 0 0 45%; }
  .about-stats__number { font-size: 60px; }
  .about-stats__label  { font-size: 13px; }

  /* PICK YOUR MOVE */
  .pickurmove { padding: 50px 0; }
  .pickurmove__title span { font-size: 40px; }
  .pickurmove__buttons .btn { font-size: 16px; padding: 12px 28px; }
}

/* ===== MOBILE 480px ===== */
@media (max-width: 480px) {

  .about-hero { padding: 110px 16px 60px; }
  .about-hero__title span { font-size: 32px; }

  .about-story__title { font-size: 48px; }

  .story-item { padding: 24px 16px; }
  .story-item__year  { font-size: 48px; }
  .story-item__label { font-size: 16px; }
  .story-item__content p { font-size: 14px; }

  .about-founders__title { font-size: 40px; line-height: 1; }

  .about-stats__number { font-size: 48px; }
  .about-stats__label  { font-size: 12px; }

  .pickurmove__title span { font-size: 32px; }

  .pickurmove__buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .pickurmove__buttons .btn {
    width: auto;
    font-size: 15px;
  }
}
