/* IMPORT SEMUA STYLE NAVBAR & FOOTER */
@import url("../css/style.css");

@import url("../css/project.css");

/* PROJECT DETAIL PAGE — FULL CSS */

/* Base Layout */
.project-detail {
  font-family: "Poppins", sans-serif;
  padding-top: 50px;
}

/* Thumbnail */
.project-detail .project-thumb {
  border-radius: 10px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* Meta Info */
.project-detail .meta-info span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #777;
}

/* Article */
.project-detail p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* Quote Box */
.project-detail blockquote {
  background: #f8f9fa;
  border-left: 5px solid #dc3545;
  padding: 15px 20px;
  font-style: italic;
  border-radius: 6px;
  margin: 25px 0;
}

/* Comments */
.comment-box {
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 18px;
  transition: 0.3s ease;
}

.comment-box:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.comment-box i {
  color: #dc3545;
}

/* Navigation Buttons */
.project-detail .btn-outline-danger {
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

.project-detail .btn-outline-danger:hover {
  background: #dc3545;
  color: #fff;
}

/* Sidebar */
.sidebar-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background: #d9d9d9;
  margin-bottom: 25px;
}
.sidebar-box h6 {
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid #dc3545;
  padding-bottom: 5px;
  text-align: center;
}

.recent-thumb {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

/* Tags */
.tags .tag {
  display: inline-block;
  background: #f4f4f4;
  color: #333;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 5px;
  margin: 3px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tags .tag:hover {
  background: #dc3545;
  color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
  .project-detail {
    padding-top: 30px;
  }
}

/* ============================================
   RAPIHKAN TEKS DI HALAMAN PROJECT DETAIL
   ============================================ */

.project-detail p {
  line-height: 1.8; /* jarak antar baris */
  font-size: 1rem; /* ukuran pas dibaca */
  margin-bottom: 1.2rem; /* jarak antar paragraf lebih rapi */
}

/* Jika content berisi <br>, agar tidak terlalu rapat */
.project-detail p br {
  margin-bottom: 10px;
  display: block;
  content: "";
}

/* Styling untuk list angka yang kamu tulis manual */
.project-detail p {
  white-space: normal; /* biar text wrap rapi */
}

/* Jika ingin memberi indent pada baris baru angka */
.project-detail p {
  text-indent: 0;
}

.comment-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
}

.comment-actions button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* 8. VERY LARGE DESKTOP ≥1600px */
@media (min-width: 1600px) {
  .project-detail .container {
    max-width: 1700px;
  }
}

