.hide {
  top: -100px;
  transition: top 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0; /* atau 2rem, pilih salah satu, jangan dua-duanya */
  background: #f4f4f7;
  color: #333;
}


.menu {
  background-color: #7E60BF;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.menu-list .nama {
  position: absolute;
  left: 20px;
}

.menu-list li {
  margin: 0 15px;
}

.menu-list li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.menu-list li a:hover {
  text-decoration: underline;
}

.menu-icon {
  display: none;
}

.main {
  max-width: 1700px;
  margin: 100px auto 0;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  padding-bottom: 80px;
}

.main p {
  margin-bottom: 10px;
  line-height: 1.5;
}

h1 {
  font-size: 25px;
  color: black;
  margin-bottom: 20px;
}

/* Heading agar konsisten */
.formal {
  font-size: 32px;
  font-weight: bold;
  margin: 40px auto 20px;
  text-align: center;
}


/* ACHIEVEMENT SECTION */
.achievement-section {
  margin: 50px auto;
  max-width: 900px;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
}

.achievement-section h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
}

.achievement-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.achievement-photo img {
  max-width: 75%; /* Ukuran sedang, antara SS1 dan SS2 */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.achievement-text {
  text-align: center;
  margin-top: 20px;
}

.achievement-text .entry-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.achievement-text .entry-subtitle {
  font-size: 14px;
  color: #444;
}

.tiktok-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}



.container {
  position: relative;
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  height: 600px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb;
}

.container .slide .item {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.slide .item:nth-child(3) {
  left: 50%;
}
.slide .item:nth-child(4) {
  left: calc(50% + 220px);
}
.slide .item:nth-child(5) {
  left: calc(50% + 440px);
}
.slide .item:nth-child(n + 6) {
  left: calc(50% + 660px);
  opacity: 0;
}


.item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.content .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation : animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
}

.button button:hover {
  background: #ababab;
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  margin-bottom: 40px;
}

.social-links li {
  list-style: none;
  margin: 0 10px;
}

.footer {
  background-color: transparent;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: black;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

body.show-footer .footer {
  transform: translateY(0);
}
.intro-section {
  display: flex;
  align-items: center; /* Ini bikin sejajar tengah secara vertikal */
  justify-content: space-between;
  gap: 40px;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 1100px;
  padding: 0 20px;
}


.intro-text {
  flex: 1 1 60%;
  text-align: left;
}

.intro-photo img {
  width: 280px;         /* Ukuran lebih besar dari sebelumnya */
  height: auto;
  border-radius: 12px;  /* Tetap kotak dengan sudut sedikit rounded */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.action-icons {
  display: flex;
  gap: 0.5rem;
}

.action-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.2rem;
}

.entry {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.entry-image img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #eee;
}

.entry-content {
  flex: 1;
  text-align: left; /* Pastikan semua teks di dalam entry rata kiri */
}

.entry-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.entry-subtitle,
.entry-duration,
.entry-location,
.entry-skills {
  font-size: 0.95rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.entry-description {
  margin-top: 0.5rem;
}

.entry-title, .entry-subtitle, .entry-duration, .entry-location, .entry-skills, .entry-description {
  text-align: left; /* Pastikan masing-masing elemen juga ikut rata kiri */
}

.see-more {
  background: none;
  color: #007bff;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}

.hidden {
  display: none;
}

.entry-detail {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
