/* ===== Project Detail Page Styles ===== */

.project-detail-page {
  padding-top: 72px;
  min-height: 100vh;
  background: #fff;
}

.project-detail-hero {
  background: linear-gradient(135deg, #1a5f3a 0%, #2C3E50 100%);
  padding: 48px 0 40px;
}

.project-detail-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.project-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.project-breadcrumb a:hover {
  color: #fff;
}

.project-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.project-detail-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.project-detail-body {
  margin-top: 40px;
}

.project-detail-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2C3E50;
}

.project-detail-body h2:first-child {
  margin-top: 0;
}

.project-detail-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.project-value-box {
  background: #f8f9fa;
  border-left: 4px solid #18A558;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.project-value-box p {
  margin: 0;
  font-weight: 600;
  color: #2C3E50;
}

.project-value-box .value {
  font-size: 1.25rem;
  color: #18A558;
}

.project-gallery {
  margin-top: 48px;
}

.project-gallery h2 {
  margin-bottom: 24px;
}

.gallery-placeholder {
  color: #6c757d;
  font-style: italic;
  padding: 40px;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.project-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #e9ecef;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 12px 20px;
  background: #2C3E50;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.project-back-link:hover {
  background: #1a2633;
}
