
/* 
Theme Name: STMIK IKMI Landing Page Addon
Description: Styles for the new landing page template - Force Fix version
*/

:root {
    --primary-color: #1e3a8a; /* Deep Royal Blue */
    --secondary-color: #fbbf24; /* Premium Gold */
    --accent-color: #3b82f6;
    --font-family: 'Outfit', sans-serif;
    --dark-color: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: var(--font-family) !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
}

/* NAVBAR FIX */
#mainNav {
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1050;
    padding: 15px 0;
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
}

.dropdown-menu {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    border-top: 4px solid var(--secondary-color) !important;
    border-radius: 12px !important;
}

.dropdown-item {
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 10px 20px !important;
}

.dropdown-item:hover {
    background-color: #f8fafc !important;
    color: var(--primary-color) !important;
}

/* HERO SLIDER FIXED */
.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.3));
    z-index: 2;
}

.carousel-caption {
    z-index: 3;
    bottom: 25% !important;
}

/* BUTTONS */
.btn-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white !important;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

/* SECTION PADDING */
.py-6 { padding: 100px 0; }

@media (max-width: 768px) {
    .py-6 { padding: 60px 0; }
    .display-3 { font-size: 2.2rem; }
}

/* FIX FOR BROKEN SCREENSHOT */
.entry-title, .edit-link { display: none !important; } /* Sembunyikan judul page bawaan WP jika ada */
