/* Reset untuk konsistensi di halaman detail */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
}

/* Pembungkus utama halaman detail */
.detail-wrapper {
    max-width: 800px; /* Ukuran pas untuk fokus membaca */
    margin: 50px auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden; /* Mencegah gambar melewati sudut bulat */
}

/* Kumpulan Galeri Foto */
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Foto Besar di Atas */
.gallery-main {
    width: 100%;
    height: 450px; /* Tinggi pas agar tidak terlalu kurus */
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar tidak penyok */
    display: block;
}

/* Tiga Foto Kecil di Bawah */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom sama lebar */
    gap: 0; /* Tanpa jarak, menempel seperti foto kolase */
}

.gallery-thumbs img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Bagian Teks Penjelasan */
.detail-content {
    padding: 40px;
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.detail-date {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.detail-desc-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.detail-desc-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .detail-wrapper {
        margin: 20px;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .gallery-thumbs img {
        height: 100px;
    }
    
    .detail-content {
        padding: 25px;
    }
    
    .detail-title {
        font-size: 22px;
    }
}
