/* Import font ramah anak dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&display=swap');

body {
    font-family: 'Fredoka', cursive, sans-serif;
    background-color: #f4f9ff;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    text-align: center;
    padding: 40px 20px;
    border-bottom: 5px dashed #fff;
}

header h1 {
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Grid Galeri Karya */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.art-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s;
    border: 3px solid #ffdde1;
}

.art-card:hover {
    transform: translateY(-5px);
}

.art-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #f0f0f0;
}

.art-info {
    padding: 15px;
}

.art-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #ff6b6b;
}

.art-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Tombol Like */
.like-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Fredoka', sans-serif;
}

.like-btn:hover {
    background: #ff5252;
}
/* --- Gaya Modal (Lightweight) --- */

/* Modal tersembunyi secara default */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; /* Pastikan paling atas */
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8); /* Latar belakang hitam transparan */
    cursor: zoom-out; /* Kursor menunjukkan bisa ditutup */
}

/* Gambar di dalam modal */
.modal-isi {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh; /* Maksimal 80% tinggi layar */
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(255,255,255,0.2);
    animation-name: zoom;
    animation-duration: 0.3s;
}

/* Animasi zoom in */
@keyframes zoom {
    from {transform:scale(0.1)} 
    to {transform:scale(1)}
}

/* Keterangan (Judul & Nama) di bawah gambar */
#keterangan-modal {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    height: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
}

/* Tombol 'X' untuk menutup */
.tutup-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.tutup-modal:hover,
.tutup-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsif untuk layar kecil */
@media only screen and (max-width: 700px){
    .modal-isi {
        max-width: 100%;
    }
}