/* Custom Utilities */
.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(6, 95, 70, 0.05);
}

.glass-footer {
    background: rgba(6, 78, 59, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(6, 95, 70, 0.08);
    border-color: #a7f3d0;
}

/* Dropdown Animation */
.group:hover .group-hover\:block {
    display: block;
    animation: slideDown 0.2s ease-in-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating WA */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    transition: all 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); }

.wa-tooltip {
    visibility: hidden; width: 140px; background-color: #333; color: #fff;
    text-align: center; border-radius: 6px; padding: 5px 0; position: absolute;
    z-index: 1; right: 110%; top: 50%; transform: translateY(-50%);
    opacity: 0; transition: opacity 0.3s; font-size: 12px;
}
.wa-float:hover .wa-tooltip { visibility: visible; opacity: 1; }

/* --- TAMBAHAN UNTUK HALAMAN DETAIL BERITA --- */

/* Typography Styling untuk Artikel (Biar enak dibaca) */
.prose-news p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #475569; /* slate-600 */
    font-size: 1.05rem;
}

.prose-news h2, 
.prose-news h3 {
    font-weight: 700;
    color: #064e3b; /* emerald-900 */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.prose-news ul, 
.prose-news ol {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.prose-news ol {
    list-style-type: decimal;
}

.prose-news strong {
    color: #065f46; /* emerald-800 */
    font-weight: 700;
}

.prose-news blockquote {
    border-left: 4px solid #10b981; /* emerald-500 */
    background: #ecfdf5; /* emerald-50 */
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #059669;
}

.prose-news img {
    border-radius: 0.75rem;
    margin: 2rem 0;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* --- TAMBAHAN UNTUK DETAIL PENGUMUMAN --- */

.prose-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #475569;
}

.prose-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.prose-content h3 {
    font-weight: 700;
    color: #065f46; /* emerald-800 */
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Style untuk Alert Info di dalam konten pengumuman */
.alert-box {
    background-color: #ecfdf5; /* emerald-50 */
    border-left: 4px solid #10b981; /* emerald-500 */
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* --- TAMBAHAN UNTUK HALAMAN HUBUNGI KAMI --- */

/* Input Form Styling */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.2s;
    font-size: 0.875rem;
    color: #334155;
}

.form-input:focus {
    outline: none;
    border-color: #10b981; /* emerald-500 */
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Tombol Gradient Mewah */
.btn-gradient {
    background-image: linear-gradient(to right, #10b981, #0d9488); /* emerald-500 to teal-600 */
}
.btn-gradient:hover {
    background-image: linear-gradient(to right, #059669, #0f766e); /* emerald-600 to teal-700 */
}

/* --- TAMBAHAN UNTUK HALAMAN PROFIL --- */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

.font-signature {
    font-family: 'Dancing Script', cursive;
}