@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

/* Gradient utilities not in Tailwind CDN by default */
.gradient-brand {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #f97316 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #7c3aed, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-btn {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.gradient-btn-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.gradient-btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

/* Card hover effect */
.gallery-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

/* Category pills */
.cat-pill {
    transition: all 0.2s ease;
}

.cat-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

/* Header dot pattern */
.hero-pattern {
    background-color: #f5f3ff;
    background-image: radial-gradient(#ddd6fe 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Dialog / Modal */
dialog {
    border: none;
    border-radius: 20px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* SEO content styling */
.seo-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7c3aed;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.seo-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

.seo-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Main image */
.main-image {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-height: 520px;
    object-fit: contain;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f3ff; }
::-webkit-scrollbar-thumb { background: #a855f7; border-radius: 4px; }
