/* ═══════════════════════════════════════════════════════
   beranda.css — styles khusus halaman Beranda
═══════════════════════════════════════════════════════ */

/* ── CARD ── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

h1 {
  color: var(--heading-color);
  font-size: 2.3rem;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.card-content p {
  font-size: 1.3rem;
  line-height: 1.6;
}

/* ── GAMBAR PROFIL ── */
.pfp-img {
  width: 220px;
  height: 293px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
}

/* ── GAMBAR PRINSIP ── */
.principle-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
  flex-shrink: 0;
}

/* ── BLOCKQUOTE ── */
blockquote {
  font-size: 1.4rem;
  font-style: italic;
  border-left: 5px solid var(--accent);
  padding-left: 20px;
  margin-top: 15px;
  line-height: 1.6;
}

/* ── KONTAK ── */
.contact-section {
  text-align: center;
  margin-top: 70px;
}

.contact-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .pfp-img {
    width: 160px;
    height: 213px;
  }

  .principle-img {
    max-width: 100%;
  }

  h1 { font-size: 1.8rem; }
  .card-content p { font-size: 1.1rem; }
  blockquote { font-size: 1.1rem; }
}
