@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #FFFFFF;
    color: #333;
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero_about {
    background: linear-gradient(
            135deg,
            rgba(30, 136, 229, 0.8),
            rgba(100, 181, 246, 0.8)
        ),
        url("../img/headabout.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero_about h1 {
    font-size: 2.0rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero_about p {
    font-size: 1.0rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Container */
.container_about {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.title_about {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0077B6E5;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.title_about::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #64b5f6;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* GRID UTAMA */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

/* CARD UMUM */
.card_about {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* KIRI */
.about-left {
  height: fit-content;
}
.about-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin: 14px 0 20px;
}

/* KANAN */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TEKS */
.about-text_about {
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* JUDUL */
.card_about h3,
.title_about {
  margin-bottom: 16px;
  color: #0b5fa5;
  font-weight: 600;
}

/* LIST MISI */
.misi-list {
  padding-left: 20px;
  list-style: disc; /* tampilkan bullet default */
}

.misi-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}


/* Motto */
.motto_about {
    background: #e3f2fd;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    color: #1565c0;
    margin-bottom: 50px;
}

/* Nilai */
.values_about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-item_about {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value-item_about:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-item_about i {
  font-size: 42px;
  color: #1e88e5;
  background: #e3f2fd;
  padding: 18px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.value-item_about h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #1e88e5;
  font-weight: 600;
}

.value-item_about p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
    .hero_about h1 {
        font-size: 2rem;
    }

    .hero_about p {
        font-size: 1rem;
    }
}
