/* Hero lebih keren */
.hero {
  position: relative;
  background: url("../img/hero.jpg") no-repeat center center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-buttons a {
  margin: 0 10px;
}

/* Button style */
.btn-primary {
  background: #228B22;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1e7a1e;
}

.btn-secondary {
  background: #fff;
  color: #228B22;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* About preview */
.about-preview {
  text-align: center;
}

.about-preview p {
  margin: 15px 0;
  color: #555;
}

.link-more {
  color: #228B22;
  font-weight: bold;
  text-decoration: none;
}

.link-more:hover {
  text-decoration: underline;
}

/* News section */
.card-img-news {
  max-height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.news-card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.news-card .card-title {
  font-size: 1.1rem;
  line-height: 1.4;
}

.news-card .small {
  font-size: 0.85rem;
}

.card-img-top {
    max-height: 220px;   /* tinggi maksimum */
    width: 100%;         /* selalu full lebar kartu */
    object-fit: cover;   /* crop agar proporsional */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.berita-detail-img {
    max-height: 400px;
    width: 100%;
    object-fit: contain; /* biar gambar penuh tanpa crop */
}

/* ===== Tombol Kembali Menonjol ===== */
.btn-back-big {
  display: inline-block;
  background: linear-gradient(135deg, #228B22, #1e7a1e);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-back-big:hover {
  background: linear-gradient(135deg, #34c759, #228B22);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* ===== Bagian Share ===== */
.share-section {
  padding-top: 15px;
  border-top: 2px solid #F5F5F5;
}

.btn-share {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.btn-share.fb { background: #3b5998; }
.btn-share.tw { background: #1da1f2; }
.btn-share.wa { background: #25d366; }

.btn-share:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

