/* css/galeri.css — dipisah otomatis dari galeri.html */
/* Use Tailwind directives instead of import for proper processing */
@tailwind base;
@tailwind components;
@tailwind utilities;

.gallery-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .gallery-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
        }
        .skeleton {
            background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s ease-in-out infinite;
        }
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        .lightbox-overlay {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(8px);
        }
        .like-btn.liked {
            color: #f43f5e;
        }
        .like-btn.liked i {
            animation: likePop 0.4s ease;
        }
        @keyframes likePop {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        .filter-btn.active {
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
            color: #06b6d4;
        }
        /* Mencegah highlight biru saat gambar ditekan lama di HP */
        img, video {
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }
