/* ======== GALERI ======== */
  /* Galeri Grid */
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #f5f9f5;
  }

  /* Item Galeri */
  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  /* Pagination */
  .pagination {
    text-align: center;
    padding: 20px 0 40px;
  }

  .pagination a {
    color: #0288D1;
    padding: 8px 14px;
    margin: 0 4px;
    text-decoration: none;
    border: 1px solid #0288D1;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
  }

  .pagination a:hover {
    background: #0288D1;
    color: #fff;
  }

  .pagination a.active {
    background: #0288D1;
    color: white;
    font-weight: bold;
  }

  /* Lightbox Overlay */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; } 
    to { opacity: 1; }
  }

  .lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
  }

  .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .close:hover {
    color: #B3E5FC;
  }
