/* ===============================================
   CIPACET PAGE SPECIFIC STYLES
   =============================================== */

/* 1. Hero Section Kustom */
#cipacet-hero {
  background-image:
    linear-gradient(to top, var(--wisata-bg) 5%, transparent 50%),
    url('../images/Cipacet.webp'); /* Gambar hero untuk Cipacet */
  background-color: var(--wisata-bg);
  background-blend-mode: multiply, normal;
  background-size: cover;
  background-position: center 40%;
  min-height: 60vh;
}

#cipacet-hero h1,
#cipacet-hero p,
#cipacet-hero .breadcrumb a,
#cipacet-hero .breadcrumb span {
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

/* 2. Layout Konten Utama */
.cipacet-content {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .cipacet-content {
    grid-template-columns: 1fr 350px; /* Artikel lebih lebar dari aside */
  }
}

.cipacet-text {
  line-height: 1.8;
  font-size: 1.05rem;
}

.cipacet-text h3 {
  font-family: "Playfair Display", serif;
  color: var(--wisata-heading);
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.cipacet-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 3. Kartu Informasi Samping (Aside) */
.info-card {
  background-color: var(--wisata-bg-alt);
  border: 1px solid var(--wisata-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

html[data-theme="dark"] .info-card {
    background-color: var(--surface);
}

.info-card h4 {
  font-family: "Playfair Display", serif;
  color: var(--wisata-heading);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--wisata-border);
  padding-bottom: 0.5rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card ul li strong {
  color: var(--wisata-text);
  display: block;
  font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* 4. Galeri Dokumentasi */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--wisata-shadow);
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}