/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #134d2a 0%, #1a6b3a 45%, #2d9e58 100%);
    color: white;
    padding: 70px 20px 50px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(245,166,35,0.12) 0%, transparent 45%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scale(1.3);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--kuning);
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}
.page-hero h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.page-hero p {
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.6;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.page-hero-breadcrumb a:hover { color: var(--kuning); }

@media (max-width: 768px) {
    .page-hero { padding: 56px 20px 40px; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.875rem; }
}

.filter-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 18px; border-radius: 20px; border: 2px solid #ddd; background: white; color: #555; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--hijau); background: var(--hijau); color: white; }

.wisata-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.wisata-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.wisata-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.wisata-img-wrap { display: block; position: relative; }
.wisata-img-wrap img { width: 100%; height: 220px; object-fit: cover; }
.wisata-no-img { width: 100%; height: 220px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--hijau); }
.wisata-img-overlay { position: absolute; top: 12px; right: 12px; }
.tiket-badge { background: rgba(0,0,0,0.6); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; backdrop-filter: blur(4px); }
.tiket-badge.gratis { background: rgba(46,125,50,0.85); }
.wisata-body { padding: 18px; }
.wisata-body h3 { font-size: 1.05rem; margin: 8px 0 6px; line-height: 1.4; }
.wisata-body h3 a { color: var(--teks); text-decoration: none; }
.wisata-body h3 a:hover { color: var(--hijau); }
.wisata-lokasi, .wisata-jam { font-size: 0.82rem; color: #888; margin-bottom: 4px; }
.wisata-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-top: 8px; }

.wisata-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.content-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.content-card h2 { color: var(--hijau); font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #e8f5e9; display: flex; align-items: center; gap: 10px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 36px; height: 36px; background: #e8f5e9; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--hijau); flex-shrink: 0; font-size: 0.9rem; }
.info-label { font-size: 0.75rem; color: #aaa; margin-bottom: 3px; }
.info-val { font-size: 0.9rem; font-weight: 600; color: var(--teks); }

@media (max-width: 900px) {
    .wisata-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .wisata-grid { grid-template-columns: 1fr; }
}