/* TENTANG PAGE */

/* Hero Section */
.tentang-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vh, 120px) 16px clamp(48px, 8vw, 64px);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 100%);
  overflow: hidden;
}

.tentang-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../img/home/hero.png") center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.tentang-hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.tentang-hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.tentang-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.tentang-hero__tagline {
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Content Sections */
.tentang-content {
  padding: 0 16px;
}

.tentang-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) 0;
}

.tentang-section:not(:last-child) {
  border-bottom: 1px solid var(--border-muted);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Sejarah Section */
.sejarah {
  background: var(--bg);
}

.sejarah-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 48px);
  align-items: center;
}

.sejarah-text {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.sejarah-text p {
  margin-bottom: 20px;
}

.sejarah-text p:last-child {
  margin-bottom: 0;
}

.sejarah-image {
  text-align: center;
}

.sejarah-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.cta-section {
  background: var(--bg-light);
  text-align: center;
  padding: clamp(48px, 8vw, 64px) 16px;
}

.cta-title {
  color: var(--text);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tentang-hero {
    min-height: 50vh;
    padding: 80px 16px 48px;
  }

  .sejarah-content,
  .visi-misi-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sejarah-image {
    order: -1;
  }

  .struktur-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tentang-section {
    padding: 32px 0;
  }

  .visi-card,
  .misi-card {
    padding: 20px;
    border-radius: 12px;
  }

  .struktur-card {
    padding: 16px;
  }

  .struktur-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .cta-section {
    padding: 32px 16px;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .tentang-hero {
    min-height: 70vh;
  }
}
