/* ==========================================================================
   LUMINA GOLD - CORE MODERN THEME STYLES
   Version: 1.0.0
   Author: Syahriel Andika
   Palette: Golden Yellow (#FFB800) -> Amber (#FF7A00) -> Sunset Coral (#FF4D4D)
   ========================================================================== */

/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
    --primary-yellow: #FFB800;
    --primary-yellow-rgb: 255, 184, 0;
    --primary-amber: #FF8C00;
    --primary-sunset: #FF4D4D;
    
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FF8C00 50%, #FF3D3D 100%);
    --gradient-gold-hover: linear-gradient(135deg, #FFD54F 0%, #FFA000 50%, #FF5722 100%);
    --gradient-hero-bg: radial-gradient(circle at 50% -20%, rgba(255, 184, 0, 0.18) 0%, rgba(255, 122, 0, 0.05) 50%, transparent 80%);
    --gradient-card-border: linear-gradient(135deg, rgba(255, 184, 0, 0.45) 0%, rgba(255, 122, 0, 0.15) 100%);
    
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0B0F19;
    --bg-dark-card: #111827;
    --bg-dark-footer: #080C14;

    --text-heading: #0F172A;
    --text-body: #475569;
    --text-muted: #94A3B8;
    --text-light: #F1F5F9;

    --border-subtle: #E2E8F0;
    --border-glow: rgba(255, 184, 0, 0.35);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(255, 122, 0, 0.15);
    --shadow-gold-glow: 0 12px 35px -8px rgba(255, 140, 0, 0.45);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. BASE & RESET --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body.lumina-theme-body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.narrow-container {
    max-width: 860px;
}

/* --- 3. AMBIENT BACKGROUND GLOWS --- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}
.glow-top-left {
    top: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.35) 0%, rgba(255, 122, 0, 0.05) 70%, transparent 100%);
    animation: floatGlow 14s ease-in-out infinite alternate;
}
.glow-top-right {
    top: -100px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.25) 0%, rgba(255, 184, 0, 0.08) 70%, transparent 100%);
    animation: floatGlow 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.95); }
}

/* --- 4. TOP ANNOUNCEMENT BAR (Dinonaktifkan sesuai permintaan) --- */
.lumina-topbar {
    display: none !important;
}

/* Custom Logo Styling (Bisa di-custom lewat WP-Admin > Tampilan > Sesuaikan > Identitas Situs) */
.custom-logo-wrap {
    display: flex;
    align-items: center;
}
.custom-logo-wrap .custom-logo-link {
    display: inline-block;
    line-height: 0;
}
.custom-logo-wrap .custom-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}
.custom-logo-wrap:hover .custom-logo {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 18px rgba(255, 184, 0, 0.45));
}
.custom-logo-wrap.mobile-logo .custom-logo {
    max-height: 42px;
}

/* --- 5. FIXED GLASSMORPHISM HEADER (Tidak ikut ter-scroll ke atas) --- */
.lumina-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.lumina-site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(255, 184, 0, 0.3);
}

/* Kompensasi padding body agar konten hero tidak tertutup fixed header */
body.lumina-theme-body {
    padding-top: 76px;
}

/* Dukungan kompatibilitas bila admin bar WordPress aktif */
body.admin-bar .lumina-site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .lumina-site-header {
        top: 46px;
    }
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    flex-wrap: nowrap;
    transition: height 0.3s ease;
}
.lumina-site-header.is-scrolled .header-container {
    height: 66px;
}

/* Site Branding / Logo di Sebelah Kiri */
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.site-branding .brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}
.brand-icon-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.25rem;
    box-shadow: var(--shadow-gold-glow);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-icon-box.sm {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}
.brand-link:hover .brand-icon-box {
    transform: rotate(10deg) scale(1.06);
}
.brand-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    white-space: nowrap;
}
.site-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

/* Right Zone Header (Menu dan Aksi Sejajar di Pojok Kanan) */
.header-right-zone {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* Desktop Navigation */
.desktop-navigation {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.desktop-navigation .lumina-nav-list,
.desktop-navigation ul {
    display: flex;
    align-items: center;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.35rem;
    flex-wrap: nowrap;
}
.desktop-navigation .lumina-nav-list li,
.desktop-navigation ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
}
.desktop-navigation .lumina-nav-list li a,
.desktop-navigation ul li a {
    padding: 0.52rem 0.95rem;
    border-radius: var(--radius-pill);
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.25s ease;
}
.desktop-navigation .lumina-nav-list li a i {
    font-size: 0.8rem;
    color: #F59E0B;
}
.desktop-navigation .lumina-nav-list li a:hover,
.desktop-navigation .lumina-nav-list .current-menu-item > a {
    color: #B45309;
    background: rgba(255, 184, 0, 0.14);
}

/* Header Actions & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}
.btn-gradient-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.58rem 1.35rem;
    background: var(--gradient-gold);
    color: #FFF !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.3;
    flex-shrink: 0;
}
.btn-gradient-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(30deg);
    transition: all 0.75s ease;
}
.btn-gradient-gold:hover::after {
    left: 140%;
}
.btn-gradient-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -6px rgba(255, 122, 0, 0.55);
}
.btn-gradient-gold:active {
    transform: translateY(0);
}
.btn-gradient-gold.full-width {
    width: 100%;
    text-align: center;
}

/* Mobile Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    padding: 9px 8px;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-sizing: border-box;
}
.hamburger-btn:hover {
    background: rgba(255, 184, 0, 0.22);
}
.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--text-heading);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger-btn.is-active .line-1 {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-active .line-2 {
    opacity: 0;
}
.hamburger-btn.is-active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- 6. MOBILE DRAWER NAVIGATION --- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-drawer.open {
    pointer-events: auto;
    opacity: 1;
}
body.drawer-open {
    overflow: hidden;
}
.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(8px);
}
.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow-y: auto;
}
.mobile-nav-drawer.open .mobile-drawer-panel {
    transform: translateX(0);
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}
.drawer-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.drawer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
}
.drawer-close-btn {
    background: #F1F5F9;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-body);
    transition: var(--transition);
}
.drawer-close-btn:hover {
    background: #FFEDD5;
    color: #EA580C;
    transform: rotate(90deg);
}
.drawer-body {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-nav-list .menu-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-nav-list .menu-item a:hover,
.mobile-nav-list .current-menu-item > a {
    background: rgba(255, 184, 0, 0.15);
    color: #B45309;
    transform: translateX(5px);
}
.drawer-footer {
    padding-top: 2rem;
}
.drawer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.drawer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: var(--transition);
}
.drawer-socials a:hover {
    background: var(--gradient-gold);
    color: #FFF;
    transform: translateY(-3px);
}

/* --- 7. HERO SECTION WITH VIBRANT GOLD GRADIENT --- */
.lumina-hero-section {
    position: relative;
    background: var(--gradient-hero-bg);
    padding: 5.5rem 0 6rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
}
.hero-blur-circle-1 {
    position: absolute;
    top: -80px;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}
.hero-blur-circle-2 {
    position: absolute;
    bottom: -60px;
    left: 8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(75px);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-content {
    max-width: 860px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 184, 0, 0.45);
    border-radius: var(--radius-pill);
    color: #B45309;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
    margin-bottom: 1.5rem;
    animation: floatBadge 3.6s ease-in-out infinite alternate;
}
@keyframes floatBadge {
    0% { transform: translateY(0); box-shadow: 0 4px 15px rgba(255, 184, 0, 0.15); }
    100% { transform: translateY(-7px); box-shadow: 0 14px 28px rgba(255, 184, 0, 0.35); }
}
.hero-badge .badge-icon {
    color: #F59E0B;
    animation: spinPulse 4s ease-in-out infinite;
}
@keyframes spinPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(18deg) scale(1.15); }
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
}
.text-gradient-gold {
    background: linear-gradient(120deg, #FFB800 0%, #FF7A00 30%, #FF3D3D 55%, #FFA500 80%, #FFB800 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 12px rgba(255, 140, 0, 0.35));
    animation: gradientFlow 5s linear infinite;
}
@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 250% center; }
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Search Box */
.hero-actions {
    max-width: 580px;
    margin: 0 auto 3rem;
}
.hero-search-box {
    background: #FFFFFF;
    border: 2px solid rgba(255, 184, 0, 0.4);
    border-radius: var(--radius-pill);
    box-shadow: 0 15px 35px -10px rgba(255, 140, 0, 0.2);
    padding: 0.4rem 0.5rem 0.4rem 1.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.hero-search-box:focus-within {
    border-color: #FF7A00;
    box-shadow: 0 18px 45px -8px rgba(255, 140, 0, 0.4);
    transform: translateY(-3px);
}
.hero-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.search-icon {
    color: #F59E0B;
    font-size: 1.15rem;
    animation: subtleWiggle 3s ease-in-out infinite alternate;
}
@keyframes subtleWiggle {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(10deg); }
}
.search-field {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-heading);
    width: 100%;
    background: transparent;
}
.search-field::placeholder {
    color: #94A3B8;
}
.search-submit {
    padding: 0.7rem 1.4rem;
    font-size: 0.92rem;
    flex-shrink: 0;
}

/* Feature Strip dengan Animasi Mengambang */
.hero-features-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 184, 0, 0.35);
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatFeature 4s ease-in-out infinite alternate;
}
.feature-item:nth-child(2) { animation-delay: 0.6s; animation-duration: 4.6s; }
.feature-item:nth-child(3) { animation-delay: 1.2s; animation-duration: 3.8s; }
.feature-item:nth-child(4) { animation-delay: 1.8s; animation-duration: 4.4s; }

@keyframes floatFeature {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}
.feature-item:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: #FF8C00;
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}
.feature-item .feat-icon {
    color: #F59E0B;
}

/* --- 8. CONTENT SECTION & POST GRID --- */
.lumina-content-section {
    padding: 5rem 0 6rem;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B45309;
    background: rgba(255, 184, 0, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Posts Grid Layout */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.25rem;
}

/* Post Card Modern dengan Animasi Scroll Kontinu (Dua Arah Atas-Bawah) */
.lumina-card-post {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    will-change: transform, opacity;
}
.lumina-card-post.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.lumina-card-post.exit-top {
    opacity: 0;
    transform: translateY(-40px) scale(0.96);
}
.lumina-card-post.exit-bottom {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}
.lumina-card-post.in-view:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 48px -10px rgba(255, 140, 0, 0.28);
    border-color: rgba(255, 184, 0, 0.6);
}

/* Media Wrap */
.post-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    background: #111827;
    overflow: hidden;
}
.media-link {
    display: block;
    width: 100%;
    height: 100%;
}
.post-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lumina-card-post:hover .post-thumbnail-img {
    transform: scale(1.08);
}
.post-fallback-banner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #F8FAFC;
    gap: 0.5rem;
}
.banner-orb {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
}
.fallback-icon {
    font-size: 2.2rem;
    color: #FFC107;
    z-index: 2;
}
.banner-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: #E2E8F0;
    z-index: 2;
}

/* Category Badge */
.post-cat-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #FFC107;
    border: 1px solid rgba(255, 184, 0, 0.35);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition);
}
.post-cat-badge:hover {
    background: var(--gradient-gold);
    color: #FFF;
    border-color: transparent;
}

/* Post Content */
.post-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-meta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}
.post-meta-row i {
    color: #F59E0B;
}
.meta-dot {
    color: #CBD5E1;
}
.post-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.post-card-title a {
    color: var(--text-heading);
    transition: var(--transition);
}
.post-card-title a:hover {
    color: #D97706;
}
.post-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}
.post-card-footer {
    padding-top: 1rem;
    border-top: 1px solid #F1F5F9;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: #B45309;
    transition: var(--transition);
}
.btn-read-more i {
    transition: transform 0.3s ease;
}
.lumina-card-post:hover .btn-read-more {
    color: #D97706;
}
.lumina-card-post:hover .btn-read-more i {
    transform: translateX(6px);
}

/* No Posts Blank State */
.no-posts-card {
    grid-column: 1 / -1;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(255, 184, 0, 0.4);
    padding: 4rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.no-posts-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.15);
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}
.no-posts-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}
.no-posts-card p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* Pagination */
.lumina-pagination-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.lumina-pagination-wrap .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.lumina-pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border-radius: var(--radius-pill);
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    color: var(--text-body);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}
.lumina-pagination-wrap .page-numbers:hover,
.lumina-pagination-wrap .page-numbers.current {
    background: var(--gradient-gold);
    color: #FFF;
    border-color: transparent;
    box-shadow: var(--shadow-gold-glow);
}

/* --- 9. SINGLE POST & PAGE STYLES --- */
.single-post-main, .single-page-main {
    padding: 3.5rem 0 6rem;
}
.single-hero-header, .page-hero-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.single-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}
.post-date-pill {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.single-post-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.single-author-row {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #FFFFFF;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}
.author-avatar-box img {
    border-radius: 50%;
}
.author-meta-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.byline-name {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.95rem;
}
.read-time-pill {
    font-size: 0.8rem;
    color: #F59E0B;
}

.single-featured-media {
    margin-bottom: 3rem;
}
.featured-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 184, 0, 0.2);
}
.featured-hero-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* Typography Prose */
.typography-prose {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #334155;
}
.typography-prose p {
    margin-bottom: 1.6rem;
}
.typography-prose h2, .typography-prose h3 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}
.typography-prose blockquote {
    border-left: 4px solid #FFB800;
    background: rgba(255, 184, 0, 0.08);
    padding: 1.25rem 1.75rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
    font-style: italic;
}
.page-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
}

.post-tags-list {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}
.tags-title {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.9rem;
}
.tag-pill {
    background: #F1F5F9;
    color: var(--text-body);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.tag-pill:hover {
    background: rgba(255, 184, 0, 0.2);
    color: #B45309;
}
.single-navigation-bar {
    margin-top: 2rem;
}
.btn-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #B45309;
    font-size: 0.95rem;
}
.btn-back-link:hover {
    color: #D97706;
    transform: translateX(-4px);
}

/* --- 10. LUXURY GRADIENT FOOTER --- */
.footer-wave-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    transform: translateY(1px);
}
.footer-wave-svg {
    width: 100%;
    height: 70px;
}
.lumina-site-footer {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 184, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 77, 77, 0.06) 0%, transparent 40%);
    color: #94A3B8;
    position: relative;
    padding-top: 4.5rem;
    border-top: 1px solid rgba(255, 184, 0, 0.15);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}
.site-title-light {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.footer-desc {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 320px;
}
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    transition: var(--transition);
}
.social-circle:hover {
    background: var(--gradient-gold);
    color: #FFF;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.35);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-pill);
}
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-links-list li a {
    color: #94A3B8;
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.footer-links-list li a i {
    font-size: 0.75rem;
    color: #FFB800;
    transition: transform 0.2s ease;
}
.footer-links-list li a:hover {
    color: #FFC107;
    transform: translateX(4px);
}
.footer-links-list li a:hover i {
    transform: translateX(2px);
}
.cat-pill {
    background: rgba(255, 184, 0, 0.15);
    color: #FFC107;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    margin-left: auto;
}

/* Newsletter Card */
.newsletter-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #FFB800;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.newsletter-title {
    color: #F8FAFC;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
}
.input-glow-group {
    display: flex;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.4rem 0.3rem 1.1rem;
    transition: var(--transition);
}
.input-glow-group:focus-within {
    border-color: #FFB800;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.3);
}
.newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-family: var(--font-body);
    width: 100%;
}
.newsletter-input::placeholder {
    color: #64748B;
}
.newsletter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-gold-glow);
    transition: var(--transition);
    flex-shrink: 0;
}
.newsletter-btn:hover {
    transform: scale(1.08);
}
.newsletter-note {
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.newsletter-note i {
    color: #10B981;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright-text strong {
    color: #E2E8F0;
}
.theme-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.theme-credits a {
    color: #E2E8F0;
    text-decoration: underline;
}
.credit-divider {
    color: #475569;
}
.gradient-tag {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- 11. FLOATING BACK TO TOP BUTTON --- */
.back-to-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0F172A;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 36px rgba(255, 140, 0, 0.45);
}
.progress-ring {
    position: absolute;
    top: 2px;
    left: 2px;
    transform: rotate(-90deg);
}
.progress-ring-indicator {
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
    transition: stroke-dashoffset 0.1s linear;
}
.up-icon {
    position: relative;
    z-index: 2;
    color: #FFB800;
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}
.back-to-top-btn:hover .up-icon {
    transform: translateY(-2px);
    color: #FFD54F;
}

/* --- 12. RESPONSIVE BREAKPOINTS (SEMPURNA & PAS DI LAYAR MOBILE) --- */
@media (max-width: 1024px) {
    body.lumina-theme-body {
        padding-top: 66px !important;
    }
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* Switch ke mode hamburger pada layar <= 1024px agar menu tidak bertabrakan dengan logo */
    .desktop-navigation {
        display: none !important;
    }
    .hamburger-btn {
        display: flex !important;
    }
    .header-actions .btn-gradient-gold {
        display: none !important;
    }
    .site-tagline {
        display: none !important;
    }
    .header-right-zone {
        gap: 0.5rem;
    }
    .header-container {
        height: 66px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    body.lumina-theme-body {
        padding-top: 64px !important;
    }
    /* Pencegahan Horizontal Overflow & Container Proporsional */
    body.lumina-theme-body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .narrow-container,
    .header-container,
    .hero-container,
    .footer-main-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Ambient Glow Scaling di Mobile */
    .glow-top-left, .glow-top-right {
        width: 260px;
        height: 260px;
        opacity: 0.3;
        filter: blur(60px);
    }
    .hero-blur-circle-1, .hero-blur-circle-2 {
        width: 220px;
        height: 220px;
        opacity: 0.2;
    }

    /* Header Navigasi Mobile yang Pas */
    .header-container {
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .lumina-site-header.is-scrolled .header-container {
        height: 60px;
    }
    .site-branding .brand-link {
        gap: 0.65rem;
    }
    .brand-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    .site-title {
        font-size: 1.2rem;
        letter-spacing: -0.01em;
    }
    .site-tagline {
        display: none;
    }
    .custom-logo-wrap .custom-logo {
        max-height: 40px;
    }
    .desktop-navigation {
        display: none;
    }
    .header-right-zone {
        gap: 0.6rem;
    }
    /* Tombol Mulai Baca disembunyikan di header navbar mobile agar bersih dan rapi, tersedia penuh di drawer */
    .header-actions .btn-gradient-gold {
        display: none;
    }
    .hamburger-btn {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 9px 8px;
    }

    /* Hero Section Proporsional */
    .lumina-hero-section {
        padding: 2.8rem 0 3.2rem;
    }
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.95rem;
        margin-bottom: 1.15rem;
    }
    .hero-title {
        font-size: clamp(1.75rem, 5.8vw, 2.35rem);
        line-height: 1.24;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }
    .hero-subtitle {
        font-size: clamp(0.92rem, 2.8vw, 1.05rem);
        line-height: 1.62;
        margin-bottom: 1.8rem;
        padding: 0 4px;
    }

    /* Search Box: Pas Horizontal Pill */
    .hero-actions {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.8rem;
    }
    .hero-search-box {
        width: 100%;
        box-sizing: border-box;
        padding: 5px 6px 5px 14px;
        border-radius: var(--radius-pill);
    }
    .hero-search-form {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 8px;
    }
    .search-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }
    .search-field {
        flex: 1;
        min-width: 0;
        font-size: 0.92rem;
    }
    .search-submit {
        padding: 0.6rem 1.15rem;
        font-size: 0.88rem;
        border-radius: var(--radius-pill);
        flex-shrink: 0;
    }

    /* Feature Chips: Rapi & Fleksibel Tanpa Memotong Teks */
    .hero-features-strip {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .feature-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        padding: 0.45rem 0.95rem;
        border-radius: var(--radius-pill);
        white-space: nowrap;
    }

    /* Content & Cards Section */
    .lumina-content-section {
        padding: 3rem 0 3.8rem;
    }
    .section-header {
        margin-bottom: 2.2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .section-desc {
        font-size: 0.95rem;
    }
    .posts-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    .lumina-card-post {
        width: 100%;
        box-sizing: border-box;
        border-radius: 18px;
        margin: 0;
    }
    .post-card-media {
        height: 200px;
        width: 100%;
    }
    .post-card-content {
        padding: 1.35rem 1.25rem;
        box-sizing: border-box;
    }
    .post-card-title {
        font-size: 1.2rem;
        line-height: 1.35;
        margin-bottom: 0.6rem;
    }
    .post-card-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    /* Single / Static Page */
    .single-post-main,
    .single-page-main {
        padding: 2rem 0 3.5rem;
    }
    .page-card {
        padding: 1.4rem 1.2rem;
        border-radius: 16px;
    }
    .single-post-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    .typography-prose {
        font-size: 1rem;
        line-height: 1.75;
    }

    /* Footer Mobile */
    .lumina-site-footer {
        padding-top: 3.2rem;
    }
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.2rem;
        width: 100%;
    }
    .brand-col {
        width: 100%;
    }
    .footer-desc {
        max-width: 100%;
        font-size: 0.9rem;
    }
    .newsletter-card {
        width: 100%;
        box-sizing: border-box;
        padding: 1.35rem 1.2rem;
        border-radius: 16px;
    }
    .newsletter-title {
        font-size: 0.98rem;
    }
    .input-glow-group {
        width: 100%;
        box-sizing: border-box;
    }
    .footer-bottom-bar {
        padding: 1.4rem 0 1.8rem;
        font-size: 0.82rem;
        text-align: center;
        gap: 0.65rem;
    }

    /* Floating Back to Top */
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    /* Optimal untuk Layar Handphone Ramping (320px - 480px) */
    .container,
    .narrow-container,
    .header-container,
    .hero-container,
    .footer-main-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-badge {
        font-size: 0.76rem;
    }
    .feature-item {
        font-size: 0.76rem;
        padding: 0.4rem 0.8rem;
    }
    .post-card-media {
        height: 185px;
    }
    .post-card-title {
        font-size: 1.12rem;
    }
    .mobile-drawer-panel {
        width: 88%;
    }
}
