/*
Theme Name: Modern Translucent Aiman
Theme URI: https://pusatkendalimanajemenasetdigital.com
Author: Aiman
Description: Tema profesional dengan efek Glassmorphism, Logo Tengah, dan optimasi teks transparan yang tajam.
Version: 2.3
Text Domain: theme-aiman
*/

/* --- 1. Root Variables --- */
:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-dark: #2d3436;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --content-width: 900px; 
}

/* --- 2. Reset & Dasar --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f0f4f8;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* --- 3. Header & Logo (DIOPTIMASI) --- */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    /* DIUBAH: Dibuat relative agar tidak menutupi layar saat scroll di HP/PC */
    position: relative; 
    z-index: 1000;
    width: 100%;
}

.header-container {
    width: 100% !important;
    max-width: var(--content-width) !important; /* Kunci logo selebar konten */
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.centered-logo {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.centered-logo img {
    /* PAKSA LEBAR DI KOMPUTER */
    width: 100% !important;
    min-width: 100% !important; 
    max-width: var(--content-width) !important; 
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

.custom-logo-link {
    display: block !important;
    width: 100% !important;
}

/* --- 4. Navigasi Ringkas --- */
.main-navigation {
    margin-top: 20px;
    width: 100%;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.main-navigation a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* --- 5. Glassmorphism Card --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

/* --- 6. Tipografi --- */
h1, h2, h3 { color: var(--primary-color); margin-bottom: 20px; }
.entry-title { font-size: 2.2rem; font-weight: 800; }

/* --- 7. Responsive Perbaikan Ruang Baca HP --- */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0; /* Header lebih tipis di HP */
    }
    
    .centered-logo img {
        max-width: 100% !important; /* Logo menyesuaikan lebar HP */
    }

    .glass-card { 
        padding: 20px; 
        margin: 10px; /* Jarak samping tipis agar konten luas */
        border-radius: 12px;
    }

    .main-navigation ul { 
        gap: 10px;
        padding: 0 10px;
    }

    .main-navigation a {
        font-size: 0.8rem;
    }

    .entry-title { font-size: 1.5rem; }
    
    /* Ruang baca konten dimaksimalkan */
    .container {
        padding: 0 !important;
    }
}