/* Trimurti v1.0.0 — Custom styles supplementing Tailwind */

/* Page section hero */
.page-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Hero carousel */
.swiper-hero .swiper-slide {
    height: 85vh;
    min-height: 500px;
    position: relative;
}
.swiper-hero .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    transition: transform 6s ease;
}
.swiper-hero .swiper-slide-active .slide-bg {
    transform: scale(1.05);
}

/* Gallery grid */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.gallery-item img {
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Team card hover */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Prose content */
.prose-content {
    line-height: 1.8;
    color: #374151;
}
.prose-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 2rem 0 1rem;
}
.prose-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #312e81;
    margin: 1.5rem 0 0.75rem;
}
.prose-content p {
    margin-bottom: 1.25rem;
}
.prose-content ul, .prose-content ol {
    margin: 1rem 0 1.25rem 1.5rem;
}
.prose-content li {
    margin-bottom: 0.5rem;
}
.prose-content blockquote {
    border-left: 4px solid #6366f1;
    padding-left: 1rem;
    color: #6b7280;
    font-style: italic;
    margin: 1.5rem 0;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #6366f1; border-radius: 3px; }

/* Badge status */
.badge-published { background: #dcfce7; color: #166534; }
.badge-pending   { background: #fef9c3; color: #854d0e; }
.badge-draft     { background: #f3f4f6; color: #374151; }

/* Fade in */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
