/* =============================================
   THE ICON! CREATIVE SERVICES – home.css
   Spesifik untuk index.html (homepage)
   Requires: style.css
   ============================================= */

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}

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

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

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,0,30,0.55) 0%,
    rgba(10,0,30,0.35) 50%,
    rgba(10,0,30,0.75) 100%
  );
}

/* Side photos */
.hero__side {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border: 12px solid #B1B1B1;
}

.hero__side--left {
  left: -130px;
  bottom: 100px;
  width: 460px;
  height: 370px;
  transform: rotate(10deg);
  transform-origin: bottom right;
}

.hero__side--right {
  right: -55px;
  overflow: hidden;
  top: 440px;
  width: 380px;
  height: 458px;
  transform: rotate(-10deg);
  transform-origin: top left;
}

@media screen and (max-width: 1366px) {
	.hero__side--right {
	  right: -55px;
	}

	.hero__side--left {
	  left: -155px;
	}
}

.hero__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 130px 20px;
}

.hero__title {
  line-height: 0.9;
  margin-bottom: 20px;
}

.hero__title span {
  display: block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0px;
}

.hero__title--white   { font-size: 100px; color: #fff; font-weight:900}
.hero__title--outline { font-size: 100px; color: transparent; font-weight:900; -webkit-text-stroke: 2.5px #fff; }
.hero__title--purple  { font-size: 100px; color: var(--purple); font-weight:900}

.hero__sub {
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero__sub strong { font-weight: 600; }

.hero__desc {
  color: rgba(255,255,255,0.9);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero__desc strong {
  font-weight: 600;
  color: #fff;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  position: relative;
  background-color: #6B22BE;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  margin-top: -180px;
  z-index: 10;
  padding: 60px 40px 0;
  border-radius: 65px 65px 0 0;
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 60px;
}

/* Green card */
.about__card--green {
  flex: 2;
  background: var(--lime);
  border-radius: 20px;
  padding: 45px 45px 45px;
}

.about__label {
  font-size: 23px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.about__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 18px;
}

.about__body {
  font-size: 23px;
  font-weight: 500;
  color: #222;
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: justify;
}

.about__buttons {
  display: flex;
  gap: 12px;
}

/* Stats */
.about__stats {
  flex: 0.85;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__stat {
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__stat--pink  { background: var(--pink); }
.about__stat--white { background: #fff; }

.stat__icon { margin-bottom: 4px; }

.stat__icon--dark svg path,
.stat__icon--dark svg rect { stroke: #111; }

.stat__number {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight:900;
  color: var(--lime);
  line-height: 1;
  letter-spacing: 1px;
}

.stat__number--dark { color: var(--purple); }

.stat__label {
  font-size: 23px;
  font-weight:600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.3px;
}

.stat__label--dark { color: #222; }

/* Divider */
.about__divider {
  background-image: url('../images/divider_transparent.webp');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 100%;
  height: 109px;
  margin-left: -40px;
  margin-right: -40px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team {
  background: #fff;
  padding: 20px 40px 80px 20px;
}

.team__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* =============================================
   POLAROID COLLAGE 
   ============================================= */
.collage-wrap {
  position: relative;
  width: 520px;
  height: 720px;
  overflow: hidden;
}

.polaroid {
  position: absolute;
  background: #fff;
  padding: 12px 12px 12px 12px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.18);
  border: 1px solid #e0e0e0;
}

.polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  
}

/* Polaroid positions – home specific */
.p1 { width:250px; height:250px; top:10px;  left:30px;  transform:rotate(-6deg); z-index:3; }
.p2 { width:250px; height:250px; top:0px;   left:270px; transform:rotate(3deg);  z-index:1; }
.p3 { width:250px; height:250px; top:220px; left:30px;   transform:rotate(-6deg); z-index:2; }
.p4 { width:250px; height:250px; top:230px; left:265px; transform:rotate(10deg);  z-index:1; }
.p5 { width:250px; height:250px; top:450px; left:30px;  transform:rotate(0deg); z-index:1; }
.p6 { width:250px; height:250px; top:460px; left:270px; transform:rotate(-4deg);  z-index:1; }

/* Team text */
.team__text {
  flex: 1;
  text-align: right;
}

.team__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 90px;
  font-weight:900;
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.team__heading--black { color: #111; }
.team__heading--pink  { color: var(--pink); }

.team__desc {
  font-size: 33px;
  font-weight: 500;
  color: #222;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* =============================================
   RESPONSIVE – HOME
   ============================================= */

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

  /* HERO */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__side--left,
  .hero__side--right { display: none; }

  .hero__content { padding: 70px 20px; }

  .hero__title--white,
  .hero__title--outline,
  .hero__title--purple { font-size: 56px; }

  .hero__sub  { font-size: 22px; }
  .hero__desc { font-size: 16px; margin-bottom: -28px;}

  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* ABOUT */
  .about {
    margin-top: -60px;
    padding: 50px 24px 0;
    border-radius: 40px 40px 0 0;
  }

  .about__inner {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }

  .about__card--green { padding: 28px 24px; }
  .about__label       { font-size: 16px; }
  .about__heading     { font-size: 34px; }
  .about__body        { font-size: 16px; }

  .about__stats {
    flex-direction: row;
    width: 100%;
    gap: 12px;
  }

  .about__stat { flex: 1; padding: 20px 16px; }
  .stat__number { font-size: 36px; }
  .stat__label  { font-size: 14px; }

  .about__divider {
    margin-left: -24px;
    margin-right: -24px;
  }
  
  .about__buttons {
    justify-content: center;
  }  

  /* TEAM */
  .team {
    padding: 20px 20px 60px;
  }

  .team__inner {
    flex-direction: column;
    gap: 40px;
  }

  .collage-wrap {
    width: 100%;
    height: 535px;
  }

  .p1 { width:200px; height:200px; top:10px;  left:30px;  }
  .p2 { width:200px; height:200px; top:0px;   left:235px; }
  .p3 { width:200px; height:200px; top:210px; left:30px;  }
  .p4 { width:200px; height:200px; top:220px; left:230px; }
  .p5 { width:200px; height:200px; top:420px; left:30px;  }
  .p6 { width:200px; height:200px; top:425px; left:230px; }

  .team__text  { text-align: center; }
  .team__heading { font-size: 60px; }
  .team__desc  { font-size: 22px; }
}

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

  /* HERO */
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero__title--white,
  .hero__title--outline,
  .hero__title--purple { font-size: 38px; }

  .hero__sub  { font-size: 18px; }
  .hero__desc { font-size: 14px; }

  .hero__buttons .btn { font-size: 15px; padding: 10px 20px; }  

  /* ABOUT */
  .about {
    margin-top: -40px;
    padding: 40px 16px 0;
    border-radius: 28px 28px 0 0;
  }

  .about__heading { font-size: 26px; }
  .about__body    { font-size: 14px; }

  .about__stats { flex-direction: column; }
  .stat__number { font-size: 40px; }
  .stat__label  { font-size: 13px; }

  .about__divider {
    margin-left: -16px;
    margin-right: -16px;
  }
  .about__buttons .btn { font-size: 15px; padding: 10px 20px; }  

  /* TEAM */
  .team { padding: 20px 16px 40px; }

  .collage-wrap {
    height: 510px;
  }

  .p1 { width:160px; height:160px; top:10px;  left:28px;   }
  .p2 { width:160px; height:160px; top:0px;   left:182px; }
  .p3 { width:160px; height:160px; top:148px; left:19px;   }
  .p4 { width:160px; height:160px; top:155px; left:178px; }
  .p5 { width:160px; height:160px; top:305px; left:19px;   }
  .p6 { width:160px; height:160px; top:310px; left:178px; }

  .team__heading { font-size: 44px; }
  .team__desc    { font-size: 18px; }
}

@media (max-width: 374px) {
	
  .p1 { width:160px; height:160px; top:10px;  left:8px;   }
  .p2 { width:160px; height:160px; top:0px;   left:162px; }
  .p3 { width:160px; height:160px; top:148px; left:-1px;   }
  .p4 { width:160px; height:160px; top:155px; left:158px; }
  .p5 { width:160px; height:160px; top:305px; left:-1px;   }
  .p6 { width:160px; height:160px; top:310px; left:158px; }	
	
}	


 