/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HERO
========================= */
.hero-galeri {
    padding: 40px 0 20px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin-top: 10px;
}

.page-divider {
    width: 120px;
    height: 3px;
    background-color: #0992C2;
    margin-top: 12px;
    border-radius: 2px;
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb-wrapper {
    padding: 10px 0 20px;
}

.breadcrumb-wrapper a {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-wrapper a:hover {
    text-decoration: underline;
}

.breadcrumb-wrapper span {
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-wrapper .active {
    font-weight: 500;
    color: #374151;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 300;
}

/* =========================
   GALERI WRAPPER
========================= */
.galeri-wrapper {
    padding: 50px 0 70px;
    background-color: #ffffff;
}

/* =========================
   FOTO GRID
========================= */
.foto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* =========================
   FOTO CARD
========================= */
.foto-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.foto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* =========================
   FOTO THUMB
========================= */
.foto-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.foto-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.foto-card:hover .foto-thumb img {
    transform: scale(1.08);
}

/* =========================
   FOTO INFO
========================= */
.foto-info {
    padding: 14px 16px;
    text-align: center;
}

.foto-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

/* =========================
   EMPTY STATE
========================= */
.empty-text {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    padding: 60px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .foto-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .foto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .foto-thumb {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .foto-grid {
        grid-template-columns: 1fr;
    }

    .foto-thumb {
        height: 200px;
    }
}