/* ========================================
   style-tentang.css
   Khusus untuk tentang.php
   ======================================== */

/* TABS NAVIGATION */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab://

.tab-btn {
  background: #89bc8c;        /* WARNA BARU SESUAI PERMINTAAN */
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn.active,
.tab-btn:hover {
  background: #2e7d32;
  
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* RESPONSIVE: HP (≤768px) → Tab lebih kecil & rapi */
@media (max-width: 768px) {
  .tab-btn {
    padding: 0.6rem 1rem;       /* Lebih kecil */
    font-size: 0.85rem;         /* Font lebih kecil */
    min-width: 90px;
    border-radius: 25px;
  }

  .tabs-nav {
    gap: 0.4rem;
    padding-bottom: 0.8rem;
  }
}

/* HP kecil (≤480px) */
@media (max-width: 480px) {
  .tab-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    min-width: 80px;
  }
}

/* TAB CONTENT */
.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TIMELINE */
.history-timeline {
  position: relative;
  padding-left: 2rem;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #a5d6a7;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 15px;
  height: 15px;
  background: #2e7d32;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #a5d6a7;
}

.year {
  font-weight: 700;
  color: #1b5e20;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* HIGHLIGHT & BOX */
.highlight {
  background: #e8f5e9;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  color: #1b5e20;
  display: inline-block;
  margin: 0.3rem 0;
}

.highlight-box {
  background: #f0fde6;
  padding: 1.2rem;
  border-left: 5px solid #2e7d32;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 0.98rem;
}

.org-list {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.8;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  padding: 0.3rem 0 0.3rem 1.8rem;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}