/* ============================================================
   ABOUT PAGE · GEOCITRA.COM
   Optimized for: Performance, Clean Layout, & Mobile Ready
============================================================ 
*/

/* 1. RESET & BASE CONFIG */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  /* Mencegah horizontal scroll di mobile */
}

/* 2. EDITORIAL NAV (STICKY) */
.editorial-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  padding: 15px 5%;
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(5px);
  /* Efek kaca modern */
}

.nav-group {
  display: flex;
  align-items: left;
  gap: 25px;
}

.nav-group a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.nav-group a:hover {
  opacity: 0.5;
}

/* 3. HERO SECTION */
.about-hero {
  background: #000;
  color: #fff;
  padding: 100px 5% 60px;
  text-align: left;
}

.hero-inner h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  /* Responsive font otomatis */
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-inner h2 {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.8;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* 4. MAIN CONTENT (GALLERY 1 COLUMN) */
.about-content {
  max-width: 900px;
  /* Batas lebar agar gambar tidak terlalu raksasa di desktop */
  margin: 0 auto;
  padding: 40px 20px;
}

/* Layout 1 Gambar 1 Baris sesuai permintaan */
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Jarak antar section gambar */
}

.content-block {
  width: 100%;
}

.team-member {
  width: 100%;
}

.team-member img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effect Soft */
.team-member img:hover {
  transform: translateY(-5px);
}

/* 5. KEMITRAAN & CTA SECTION */
.ratecard-cta {
  margin-top: 80px;
  padding: 60px 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.ratecard-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.ratecard-cta p {
  max-width: 650px;
  margin: 0 auto 20px;
  color: #444;
  font-size: 1.05rem;
}

/* DOWNLOAD BUTTON STYLE */
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin: 30px 0;
  transition: all 0.3s ease;
  border: 2px solid #000;
}

.download-link i {
  font-size: 1.2rem;
  color: #ff4d4d;
  /* Warna icon PDF */
}

.download-link:hover {
  background: #fff;
  color: #000;
}

.download-note {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* 6. FOOTER */
.about-footer {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.about-footer h3 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #333;
}

.about-footer p {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

/* 7. RESPONSIVE MEDIA QUERIES */

/* Tablet & HP */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 5% 40px;
  }

  .nav-group {
    gap: 15px;
    justify-content: center;
    /* Navigasi tengah di mobile */
  }

  .about-content {
    padding: 20px 15px;
  }

  .gallery-container {
    gap: 20px;
    /* Jarak gambar lebih rapat di mobile */
  }

  .ratecard-cta h3 {
    font-size: 1.5rem;
  }

  .download-link {
    width: 100%;
    /* Tombol download lebar penuh di mobile */
    justify-content: center;
  }
}

/* HP Kecil */
@media (max-width: 480px) {
  .hero-inner h1 {
    font-size: 1.8rem;
  }

  .nav-group a {
    font-size: 12px;
  }
}