/* RESET RINGAN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #a4e4f8;
    padding: 20px;
    color: #222;
}

/* Breadcrumb */
.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.breadcrumb li::after {
    content: ">";
    margin-left: 8px;
    color: #777;
}
.breadcrumb li:last-child::after {
    content: "";
}
.breadcrumb a {
    text-decoration: none;
    color: #0073e6;
}

h1 {
    margin-bottom: 20px;
}

/* GALLERY GRID */
.gallery {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* CARD */
.kartu {
    background: #bee5fc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.kartu img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* HOVER ZOOM */
.kartu:hover img {
    transform: scale(1.12);
}
.kartu:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
figcaption {
    padding: 14px;
}
figcaption strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

/* MODAL ZOOM BESAR */
.modal {
    display: none;
    position: fixed;
    z-index: 50;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.85);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 85%;
    border-radius: 6px;
}

#modalCaption {
    text-align: center;
    color: #eee;
    margin-top: 15px;
}

#closeBtn {
    position: absolute;
    top: 40px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}