
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI';
    background: #fefefe;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  /* Efek Latar Lingkaran Pastel Blur */
  body::before {
content: "";
position: absolute;
width: 700px;
height: 700px;
top: 0px;
left: 90%;
transform: translate(-50%, -50%);
background: radial-gradient(
circle,
rgba(114, 69, 187, 0.5) 0%,   
rgba(178, 155, 255, 0.4) 25%, 
rgba(155, 255, 225, 0.7) 70%, 
rgba(155, 255, 165, 0.6) 90%, 
rgba(255, 255, 255, 0.2) 100%
);
filter: blur(180px);
z-index: -1;
opacity: 1;
}
  
  /* Container Umum */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
  }
  
  /* Header */
  header {
    background-color: #ffffff89;
    backdrop-filter: blur(3px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo */
  .logo img {
    max-height: 70px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    vertical-align: middle;

  }
  
  /* Navigasi */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 60px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #000;
    font: 18px 'Segoe UI';
    font-weight: 400;
    position: relative;
    transition: 0.3s ease;
  }


  .nav-links li a.active {
    font-weight: bold;
  }

   .nav-links li a:hover {
    color: #7f3db4;
   }
  
  
  .nav-links li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #7f3db4;
  }
  
  /* Hero Section */
  .hero {
    padding: 20px 0;
  }
  
  .hero .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 0px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Hero Teks */
  .hero-text, .hero-photo{
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 1;
  }

  .hero-bg {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: 90%;
    left: -5%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
      circle,
      rgba(114, 69, 187, 0.5) 0%,   
      rgba(178, 155, 255, 0.4) 25%, 
      rgba(155, 255, 225, 0.7) 70%, 
      rgba(155, 255, 165, 0.6) 90%, 
    rgba(255, 255, 255, 0.2) 100%  
    );
    filter: blur(180px);
    z-index: -1;
    opacity: 1;
  }
  
  .hero-text h1 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
  }
  
  .hero-text h2 {
    font-size: 45px;
    font-weight: 800;
    color: #7f3db4;
    margin-top: 2px;
  }
  
  .hero-text p {
    margin-top: 2px;
    font-size: 23px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
  }

  .sosmed-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  
  .sosmed-icons a {
    font-size: 28px;
    color: #9d5bd4; /* ungu */
    border: 2px solid #b57edc;
    border-radius: 50%;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
  }  
  
  .sosmed-icons a:hover {
    transform: scale(1.2);
    color: #ffffff; /* warna saat hover */
  }
    /* Hero Foto */
  .hero-photo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 220px;
  }

  .Foto {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
  }

    .about {
  padding: 60px 20px;
}

.about .container {
  display: flex;
  flex-wrap: nowrap; /* Pastikan elemen tidak membungkus */
  justify-content: space-between;
  align-items: center;
  gap: 40px; /* Jarak antar elemen */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.foto-about {
  flex: 1; /* Foto mengambil 50% ruang */
  max-width: 50%;
}

.about-text {
  flex: 1;
  max-width: 50%;
}

.about-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: -5px;
}

.about-purple {
  color: #7f3db4; /* Warna ungu untuk "Me" */
}

.about-text h1 {
  font-size: 35px;
  font-weight: 700;
  color: #7f3db4;
  margin-bottom: 5px;
}

.about-text p {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.button a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  background-color: #ffffff; 
  text-decoration: none;
  border-radius: 10px;
  border: 4px solid #b882e3;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.button a:hover {
  background-color: #b782e3; /* Warna ungu lebih terang saat hover */
  color:#ffffff;
}

  
.about-bg {
  content: "";
  position: absolute;
  max-width: 100%;
  width: 800px;
  height: 800px;
  top: 80%;
  right: -70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
  circle, 
    rgba(114, 69, 187, 0.5) 0%,     /* Ungu di tengah */
    rgba(178, 155, 255, 0.4) 25%,   /* Ungu muda */
    rgba(155, 255, 225, 0.7) 70%,   /* Hijau kebiruan (ganti G jadi 225 untuk efek aqua) */
    rgba(155, 255, 165, 0.6) 90%,   /* Hijau pastel keluar */
    rgba(255, 255, 255, 0.2) 100%
);
  filter: blur(150px);
  z-index: -12;
  opacity: 1;
}

.about-bg2 {
  content: "";
  position: absolute;
  max-width: 100%;
  width: 900px;
  height: 900px;
  top: 70%; /* Ubah dari 90% ke 40% agar lebih naik ke atas */
  right: -60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle, 
    rgba(114, 69, 187, 0.5) 0%,     /* Ungu di tengah */
    rgba(178, 155, 255, 0.4) 25%,   /* Ungu muda */
    rgba(155, 255, 225, 0.7) 70%,   /* Hijau kebiruan (ganti G jadi 225 untuk efek aqua) */
    rgba(155, 255, 165, 0.6) 90%,   /* Hijau pastel keluar */
    rgba(255, 255, 255, 0.2) 100%
  );
  filter: blur(150px);
  z-index: -1;
  opacity: 1;
}


.about-bg4{
  content: "";
  position: absolute;
  max-width: 100%;
  width: 900px;
  height: 900px;
  top: 50%;
  right: -60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle, 
    rgba(114, 69, 187, 0.5) 0%,     /* Ungu di tengah */
    rgba(178, 155, 255, 0.4) 25%,   /* Ungu muda */
    rgba(155, 255, 225, 0.7) 70%,   /* Hijau kebiruan (ganti G jadi
    rgba(155, 255, 165, 0.6) 90%,   /* Hijau pastel keluar */
    rgba(255, 255, 255, 0.2) 100%
  );
  filter: blur(180px);
  z-index: -1;
  opacity: 1;
}

.portfolio {
    padding: 80px 0;
  }

  .portfolio-bg {
  position: absolute;
  max-width: 100%;
  width: 600px;
  height: 600px;
  top: 100%;
  left: -10%; /* posisi kiri, mirip about-bg tapi left */
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle, 
    rgba(114, 69, 187, 0.5) 0%,      /* Ungu di tengah */
    rgba(178, 155, 255, 0.4) 25%,    /* Ungu muda */
    rgba(155, 255, 225, 0.7) 70%,    /* Hijau kebiruan */
    rgba(155, 255, 165, 0.6) 90%,   /* Hijau pastel keluar */
    rgba(255, 255, 255, 0.2) 100%
  );
  filter: blur(150px);
  z-index: -1;
  opacity: 1;
}


  .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .section-title .warna {  
    color: #7f3db4;
  }

  .section-line {
    display: block;
    margin: 0 auto 30px auto; 
    width: 300px; 
    max-width: 30vw; 
    height: auto;
  }

  .portfolio-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    background: #fff;
    border-radius: 20px;
    border: 5px solid #7DE0EA;
    box-shadow: 0 5px 30px rgba(138, 228, 240, 0.725);
    padding: 32px 35px;
    width: 300px;
    text-align: center;
    transition: 
    box-shadow 0.3s
    transform 0.3s,
    border-color 0.3s,
    background-position 0.5s;
  background-size: 200% 200%;
  background-position: left bottom;
  }

  .card h3 {
    font-size: 25px;
    font-weight: 700;
  }

  .card p{
    padding: 10px 0;
    font-size: 20px;
    font-weight: 500;
  }

  .card-img {
    display: block;
    margin: 0 auto 15px auto;
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .card:hover {
    transform: translateY(-18px) scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 40px rgba(127, 61, 180, 0.25), 0 2px 8px #b882e3;
    border-color: #7f3db4;
    background-position: right top;
    cursor: pointer;
  }

  .portfolio .container {
  position: relative;
}

  /* Section New Update */
.new-update {
  margin: 70px 0 0 0;
  padding: 60px 30px 60px 30px;
  min-height: 900px;
}


.new-update-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.new-update-left {
  flex: 1.1;
  min-width: 400px;
  max-width: 420px;
  margin-left: 80px;
}


.new-update-title {
  font-size: 40px;
  font-weight: 800;
  color: #7f3db4;
  line-height: 1.1;
  margin-bottom: 0;
  position: relative;
}

.warna-lucu {
  display: block;
  margin: 0 auto -18px 80px; 
  width: 80px;              height: auto;
}

.vektor-line {
  display: block;
  margin: 20px auto 20px 10px; 
  width: 250px; 
  max-width: 30vw; 
  height: auto;
}

.new-update-desc {
  font-size: 24px;
  color: #222;
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.35;
  text-align: justify;
}

.new-update-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  margin-top: 120px;
  gap: 25px;
  min-width: 320px;
}

.update-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 4px solid #bfa6f7;
  border-radius: 18px;
  padding: 10px 20px;
  gap: 18px;
  position: relative;
  box-shadow: 0 5px 30px rgba(194, 141, 237, 0.451);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  width: 600px;
  height: 150px;
  margin-left: 20px;
}

.update-card:hover {
  box-shadow: 0 15px 40px rgba(127, 61, 180, 0.18);
  transform: translateY(-6px) scale(1.02);
  border-color: #7f3db4;
}

.update-card-img {
  width: 130px;
  height: 130px;
  padding: 5px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}

.update-card-content {
  flex: 1;
}

.update-card-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #222;
}

.update-card-content p {
  font-size: 15px;
  color: #444;
  font-weight: 500;
  margin-bottom: 0;
}

.update-card-arrow {
  font-size: 20px;
  color: #bfa6f7;
  font-weight: bold;
  align-self: flex-end;
  margin: 0 6px -5px 0px;
  transition: color 0.3s;
}

.update-card:hover .update-card-arrow {
  color: #7f3db4;
}

  .words-about {
  padding: 80px 0;
  overflow: hidden;
}

.words-about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 800;
  color: #222;
  position: relative;
  letter-spacing: 1px;
}

.words-about .about-purple {
  color: #7f3db4;
  text-decoration: underline 3px #7f3db4;
  text-underline-offset: 6px;
}

.section-line2 {
  display: block;
  margin: 0 auto 0 auto;
  width: 300px;
  max-width: 60vw;
  height: auto;
}

.description-box2 {
  position: absolute;
  left: 50%;
  top: 500px; /* atur agar lebih turun dari .description-box */
  transform: translateX(-50%);
  width: 1100px;
  max-width: 90vw;
  height: 340px;
  background: #CDF0EA; /* warna berbeda */
  border-radius: 24px;
  z-index: 0;
  box-shadow: 0 8px 32px rgba(127, 61, 180, 0.10);
}


.description-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  border-radius: 20px;
  max-width: 1000px;
  height: 500px;
  margin: 40px auto 0;
  padding: 10px 60px 40px 60px;
  box-shadow: 0 8px 24px rgba(127, 61, 180, 0.08);
  position: relative;
  background: #EAFFFB;
    overflow: hidden; /* agar sudut bawah tetap rapi */
}

.description-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px; /* tinggi warna bawah, bisa diubah */
  background: #CDF0EA; /* warna bawah */
  border-radius: 0 0 20px 20px; /* hanya sudut bawah */
  z-index: 0;
  pointer-events: none;
}


.username {
  font-weight: 500;
}

.profile-pic-main {
  width: 90%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-top: 0;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(127, 61, 180, 0.08);
}


.about-desc {
  flex: 1;
}

.foto-family {
  width: 300px;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
}

.about-desc h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #222;
  line-height: 1.1;
}

.about-desc p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 10px;
  max-width: 520px;
}

  .ending-bg {
    position: absolute;
    top: 85%;
    left: -35%; /* Geser ke kiri */
    width: 900px;
    height: 900px;
    max-width: 100vw;
    background: radial-gradient(
      circle,
      rgba(114, 69, 187, 0.5) 0%,  
      rgba(178, 155, 255, 0.4) 65%,
      rgba(155, 255, 225, 0.7) 30%,
      rgba(155, 255, 165, 0.6) 90%,
      rgba(255, 255, 255, 0.2) 100%
    );
    filter: blur(120px);
    z-index: 0;
    opacity: 1;
    pointer-events: none;
  }

   .endingbg2 {
   position: absolute;
   top: 85%;
   right: -30%; /* Geser ke kiri */
   width: 900px;
   height: 900px;
   max-width: 100vw;
   background: radial-gradient(
     circle,
     rgba(114, 69, 187, 0.5) 0%,  
     rgba(178, 155, 255, 0.4) 15%,
     rgba(167, 255, 229, 0.7) 30%,
     rgba(150, 223, 157, 0.6) 90%,
     rgba(102, 97, 243, 0.2) 100%
   );
   filter: blur(140px);
   z-index: 0;
   opacity: 1;
   pointer-events: none;
 }

.words-about .container {
  position: relative;
  z-index: 1;
}

/* Learning Journey Section */
.learning-journey-section {
  padding: 110px 0 40px 0;
  min-height: 500px;
}

.learning-journey-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
}

.learning-journey-left {
  flex: 1.2;
  min-width: 320px;
  max-width: 600px;
  margin-top: 30px;
}

.learning-journey-title {
  font-size: 45px;
  font-weight: 800;
  color: #7f3db4;
  margin-bottom: 18px;
  position: relative;
  line-height: 1.1;
}

.underline-img {
  display: block;
  margin-top: 8px;
  margin-left: 40px;
  width: 350px;
  max-width: 80%;
  height: auto;
}

.learning-journey-desc {
  font-size: 1.35rem;
  color: #222;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.35;
  white-space: pre-line;
}

.learning-journey-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 20px;
}

.education-img {
  width: 470px;
  max-width: 95vw;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .learning-journey-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .learning-journey-right {
    justify-content: center;
    width: 100%;
  }
  .education-img {
    margin-top: 20px;
    width: 100%;
    max-width: 98vw;
  }
  .learning-journey-left {
    margin-top: 0;
    text-align: center;
  }
  .learning-journey-title {
    font-size: 2.1rem;
  }
}

.activity-gallery {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: -10px;
}

.about-me {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.about-me .div {
  overflow: hidden;
  width: 100%; /* Mengubah dari fixed width ke responsive */
  max-width: 1440px;
  height: auto; /* Mengubah dari fixed height ke auto */
  position: relative;
  margin: 0 auto;
}

.about-me .overlap {
  position: relative; /* Mengubah dari absolute ke relative */
  width: 100%;
  max-width: 1200px; /* Membatasi lebar maksimal */
  height: auto;
  margin: 0 auto;
  padding: 40px 0;
  top: 0;
  left: 0;
}

.about-me .text-wrapper-11 {
  text-align: center;
  position: relative; /* Mengubah dari absolute ke relative */
  margin-bottom: 20px;
  font-family: "Work Sans-Bold", Helvetica;
  font-weight: 700;
  color: #713f91;
  font-size: 40px;
}

.about-me .vector-2 {
  display: block;
  width: 236px;
  height: 36px;
  margin: 0 auto 40px;
  position: relative; /* Mengubah dari absolute ke relative */
}

.about-me .eksperience-conten {
   position: relative;
   width: 100%;
   max-width: 992px;
   height: auto;
   margin: 0 auto;
   display: grid;
   grid-template-areas: 
     "group6 group5"
     "group3 group4";
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
   padding: 20px;
}

.about-me .eksperience-conten {
   position: relative;
   width: 100%;
   max-width: 992px;
   height: auto;
   margin: 0 auto;
   display: grid;
   grid-template-areas: 
     "group6 group5"
     "group3 group4";
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
   padding: 20px;
}

.about-me .group-3 {
   position: absolute;
   width: 450px; /* Mengubah dari 300px menjadi 450px untuk memperbesar ukuran */
   height: 645;
   top: 310px;
   left: 26px;
}

.about-me .group-4 {
   position: relative;
   width: 100%;
   height: auto;
   grid-area: group4;
   aspect-ratio: 16/9;
}

.about-me .group-5 {
   position: relative;
   width: 100%;
   height: auto;
   grid-area: group5;
   aspect-ratio: 3/4;
}

.about-me .group-6 {
   position: relative;
   width: 100%;
   height: auto;
   grid-area: group6;
   aspect-ratio: 16/9;
}

.about-me .group-3 img,
.about-me .group-4 img,
.about-me .group-5 img,
.about-me .group-6 img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 15px;
}
/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    margin-bottom: 100px; /* Alternatif menggunakan margin di container */
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-info h1 {
    font-size: 43px;
    font-weight: 700;
    color: #c490e4;
    line-height: 1.4;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: #ecebe2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.icon-box:hover {
    background-color: #d4c9e0;
}

.icon-box i {
    font-size: 20px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    color: #333;
}

.contact-form {
    flex: 1;
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 17px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 19px 14px 45px;
    border: none;
    border-bottom: 1px solid #161718;
    background: transparent;
    font-size: 16px;
    color: #333;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #161111;
    border-radius: 4px;
}

.form-checkbox label {
    font-size: 16px;
    color: #13151a;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 21px;
    border-radius: 10px;
    border: 4px solid #c490e4;
    background: transparent;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #2b2121;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #d4c9e0;
}

.portfolio-section {
    margin-top: 30px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    gap: 30px;
    justify-content: center;
    margin: 50px auto;
    padding: 0;
    max-width: 1400px; /* Memperbesar max-width untuk mengakomodasi card yang lebih besar */
}

.portfolio-item {
    width: 380px;
    height: 320px;
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; 
    padding: 5px 20px 35px 20px;
    background: white;
}

.portfolio-overlay h3 {
    color: rgb(0, 0, 0);
    font-size: 23px;
    margin: 0;
    font-weight: 600;
}

.portfolio-section h1 {
  font-size: 60px;
  font-weight: 780;
  text-align: center;
  color: #7f3db4;
  margin-bottom: 20px;
  line-height: 1.2; /* Atur jarak antar baris di sini */
}

.section-line3{
  display: block;
  margin: 0 auto 30px auto; 
  width: 800px; 
  height: auto;
}
.portfolio-section .hero-bg {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: 40%;
    left: 5%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(114, 69, 187, 0.5) 0%,   
        rgba(178, 155, 255, 0.4) 25%, 
        rgba(155, 255, 225, 0.7) 70%, 
        rgba(155, 255, 165, 0.6) 90%, 
        rgba(255, 255, 255, 0.2) 100%  
    );
    filter: blur(180px);
    z-index: -1;
    opacity: 1;
}

.portfolio-overlay::after {
    content: ">>>";
    position: absolute;
    bottom: 5px;
    left :20px;
    color: #FF9B50;
    font-weight: bold;
    font-size: 18px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(113, 63, 145, 0.2);
}

/* Blog Section Styles */
.blog-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    margin-top: 60px;
}

.blog-section .container {
    margin-bottom: 100px; 
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 380px); /* Mengatur lebar tetap untuk setiap kolom */
    gap: 25px;
    margin-top: 50px;
    padding: 0 20px;
    justify-content: center; /* Mengatur grid ke tengah */
}

.blog-card {
    width: 380px; /* Lebar tetap untuk card */
    height: 450px; /* Tinggi tetap untuk card */
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    border: 2px solid #b276f7;
    transition: all 0.3s ease;
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 350px; /* Lebar gambar lebih kecil dari card */
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin: 40px auto 10px auto; /* Mengatur margin atas-bawah dan auto untuk kiri-kanan */
}

.blog-content {
    padding: 15px 10px 5px 10px;
    background: white;
    position: relative;
    flex-grow: 1; /* Mengisi sisa ruang */
    display: flex;
    flex-direction: column;
}


.blog-section .hero-bg {
     content: "";
   position: absolute;
   width: 700px;
   height: 700px;
   top: 40%;
   left: 5%;
   transform: translate(-50%, -50%);
   background: radial-gradient(
       circle,
       rgba(114, 69, 187, 0.5) 0%,   
       rgba(178, 155, 255, 0.4) 25%, 
       rgba(155, 255, 225, 0.7) 70%, 
       rgba(155, 255, 165, 0.6) 90%, 
       rgba(255, 255, 255, 0.2) 100%  
   );
   filter: blur(180px);
   z-index: -1;
   opacity: 1;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.blog-card.girlhood .category {
    background: #FFD6E8;
    color: #FF69B4;
}

.blog-card.alternative .category {
    background: #E6E6FA;
    color: #9370DB;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.blog-section h1 {
    font-size: 55px;
    font-weight: 780;
    text-align: center;
    color: #7f3db4;
    margin-bottom: 20px;
    line-height: 1.2; /* Atur jarak antar baris di sini */
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.read-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #9370DB;
    font-weight: bold;
    justify-content: flex-end;
}

/* Search Box Styles */
.search-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e6d5f9;
    border-radius: 25px;
    padding: 5px 15px;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
}

.search-box:hover,
.search-box:focus-within {
    border-color: #c490e4;
    box-shadow: 0 4px 15px rgba(127, 61, 180, 0.1);
}

.search-box input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    background: transparent;
}

.search-button {
    background: none;
    border: none;
    color: #c490e4;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.search-button:hover {
    color: #7f3db4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Blog Post Styles */
.blog-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.ending-bg5 {
    position: absolute;
    width: 700px;
    height: 700px;
    bottom: -20%;
    left: -10%;
    background: radial-gradient(
        circle,
        rgba(98, 255, 114, 0.8) 0%,
        rgba(243, 248, 255, 0.4) 40%,
        rgba(207, 138, 239, 0.6) 80%,
        rgba(196, 84, 219, 0.6) 100%
    );
    filter: blur(180px);
}

.endingbg6 {
    position: absolute;
    width: 700px;
    height: 700px;
    bottom: -30%;
    right: -10%;
    background: radial-gradient(
        circle,
        rgba(155, 255, 165, 0.9) 40%,
        rgba(184, 128, 239, 0.8) 70%,
        rgba(168, 70, 213, 0.9) 85%,
        rgba(194, 66, 219, 0.9) 100%
    );
    filter: blur(180px);
}

.blog-post {
    position: relative;
    max-width: 1100px;
    margin: 120px auto;
    padding: 20px;
}

.post-container {
    background: white;
    border-radius: 20px;
    border: 2px solid #000000;
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.back-button {
    position: absolute;
    top: -70px;
    left: 5px;
    color: #713F91;
    font-size: 40px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}


.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-tag.girlhood {
    background: #FFE6F1;
    color: #FF69B4;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.post-date {
    color: #000000;
    font-size: 14px;
}

.divider {
    height: 1px;
    background: #00000067;
    margin: 20px 0;
}

.post-title {
    font-size: 36px;
    color: #FF69B4;
    text-align: center;
    margin: 30px 0;
    line-height: 1.3;
}

.content-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
    border: 1px solid #000000;
    margin: 30px 0;
}

.text-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 15px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.signature {
    text-align: right;
    color: #FF69B4;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        grid-template-columns: 1fr;
    }
    
    .post-title {
        font-size: 28px;
    }
}


.footer-wrapper {
  background: linear-gradient(135deg, #b782e3b0 0%, #7ddfea61 50%, #ccfce2a1 100%);
  position: relative;
  width: 100%;
}

.footer-glass-layer {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.3); /* bening */
  width: 100%;
  padding: 40px 0 30px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

.footer-info {
  color: #444;
  font-size: 18px;
  margin-bottom: 2px;
}

.footer-sosmed {
  display: flex;
  gap: 13px;
  margin-top: -5px;
}

.footer-sosmed a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #d1b2e0;
  color: #b882e3;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-sosmed a:hover {
  background: #b882e3;
  color: #fff;
  border-color: #b882e3;
}

@media (max-width: 600px) {
  .footer-container {
    align-items: center;
    padding: 0 10px;
  }
  .footer-logo img {
    height: 60px;
  }
  .footer-brand {
    font-size: 1rem;
  }

    .exp-bg {
  position: absolute;
  max-width: 100%;
  width: 600px;
  height: 600px;
  top: -50px;
  left: -10%; 
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle, 
    rgba(114, 69, 187, 0.5) 0%,      
    rgba(178, 155, 255, 0.4) 25%,   
    rgba(155, 255, 225, 0.7) 70%,    
    rgba(155, 255, 165, 0.6) 90%,   
    rgba(255, 255, 255, 0.2) 100%
  );
  filter: blur(150px);
  z-index: -1;
  opacity: 1;
}


  @media (max-width: 768px) {
    .about .container {
      flex-direction: column; /* Tumpuk elemen secara vertikal */
      text-align: center;
    }

    .foto-about,
    .about-text {
      max-width: 100%; /* Elemen mengambil lebar penuh */
    }

    .foto-about {
      margin-bottom: 20px; /* Tambahkan jarak antara foto dan teks */
    }
  }

  @media (max-width: 900px) {
  .new-update-container {
    flex-direction: column;
    gap: 30px;
  }
  .new-update-right {
    width: 100%;
  }
}
    
  @media (max-width: 900px) {
    .description-box {
      flex-direction: column;
      gap: 30px;
      padding: 30px 10px;
    }
    .about-desc {
      padding-left: 0;
      text-align: center;
    }
  }
}