/* 
   AmenCMS Premium Design System v1.0
   -----------------------------------
   Target: Modern Pastoral/Church Administration Portal
*/

:root {
    --amen-gradient: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    --amen-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --amen-glass: rgba(255, 255, 255, 0.85);
    --amen-glass-border: rgba(255, 255, 255, 0.4);
}

/* 🖼️ [Layout & Grid] Fix for overlapping issues */
.sct_wrap { margin-bottom: 40px; clear: both; overflow: hidden; }
.owl-carousel .owl-stage-outer { overflow: hidden; }
.owl-carousel .owl-item { opacity: 1 !important; visibility: visible !important; }

/* 💎 [Glassmorphism Dashboard] */
.premium-dashboard {
    background: var(--amen-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--amen-glass-border);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--amen-shadow);
    margin-bottom: 40px;
}

.dashboard-stat { display: flex; align-items: center; gap: 15px; }
.stat-icon { width: 50px; height: 50px; background: #f0f4ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #4e73df; font-size: 20px; }
.stat-info .label { font-size: 13px; color: #858796; font-weight: 700; display: block; margin-bottom: 2px; }
.stat-info .value { font-size: 22px; font-weight: 800; color: #2c3e50; }

.dashboard-actions .btn-amen { padding: 10px 20px; border-radius: 10px; font-weight: 700; text-decoration: none; font-size: 14px; transition: all 0.2s; }
.btn-amen.primary { background: #4e73df; color: #fff; }
.btn-amen.secondary { background: #eaecf4; color: #2c3e50; margin-left: 10px; }

/* 🚀 [Hero Enhancements] */
.hero-section {
    position: relative;
    background: #f8f9fc;
    border-radius: 30px;
    padding: 80px;
    overflow: hidden;
    margin-top: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; width: 40%; height: 100%;
    background: url('../img/hero_pattern.svg');
    opacity: 0.1;
}

/* 📥 [Service Item Cards] */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-item-v2 {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}
.service-item-v2:hover { transform: translateY(-10px); box-shadow: var(--amen-shadow); border-color: #4e73df; }
.service-item-v2 i { font-size: 36px; margin-bottom: 20px; display: block; }
.service-item-v2 h4 { font-size: 19px; font-weight: 800; color: #2c3e50; margin-bottom: 10px; }
.service-item-v2 p { color: #858796; font-size: 14px; }

/* 🚨 [System Fixes] */
img { max-width: 100%; height: auto; }
.sound_only { display: none !important; }
