* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #111;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }

    /* Navbar */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
    }
    /* --- CSS UNTUK NAVBAR RESPONSIVE --- */

/* Gaya dasar Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff; /* Warna navbar putih */
    color: #111; /* Warna teks hitam */
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-img {
    width: 32px;
    height: auto;
}

.logo span {
    color: #111; /* Warna teks logo hitam */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #111; /* Warna teks link hitam */
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: transparent; /* Warna hover biru */
    color: #1e40af; /* Teks putih saat di hover */
}

nav ul li.active a {
    background-color: #1e40af; /* Latar belakang biru untuk link aktif */
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #111;
}

.renungan-preview {
  padding: 60px 20px;
  background-color: #ffff;
  display: flex;
  justify-content: center;
}

.renungan-preview-container {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
}

.renungan-image {
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.renungan-text {
  flex: 1;
  text-align: left;
}

.renungan-text h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.renungan-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-renungan {
  display: inline-block;
  background-color: #1e40af;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-renungan:hover {
  background-color: #1e05af;
}

.daftar-renungan {
  padding: 60px 20px;
  text-align: center;
}

.daftar-renungan h1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.renungan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.renungan-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 320px;
  text-align: left;
}

.renungan-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.renungan-info {
  padding: 20px;
}

.renungan-info h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.renungan-info p {
  margin: 0 0 16px;
  color: #555;
}

.back-container {
  text-align: center;
  margin: 40px 0;
}

.btn-back {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-back:hover {
  background-color: #333;
}

footer {
    padding: 20px 50px;
    font-size: 14px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .social-icons a {
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1e40af; /* Warna hover */
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .menu-toggle {
    display: block; /* Tampilkan di mobile */
    z-index: 100;
  }
  
  nav ul {
    position: absolute;
    top: 60px; /* Jarak dari navbar */
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Sembunyikan menu secara default */
  }

  nav ul.show {
    display: flex; /* Tampilkan menu saat class 'show' aktif */
  }

  nav ul li {
    padding: 0.5rem;
  }
}