/*
Theme Name: Blog Modern Bootstrap
Author: Blogul
Version: 3.0
*/

/* ------------------------------------
   LUXURY PREMIUM THEME REFINEMENT
------------------------------------ */

:root {
    --lux-bg: #0a0d14;
    --lux-bg-light: #111622;
    --lux-text: #e5e7eb;
    --lux-text-muted: #9ca3af;
    --lux-primary: #4f8cff;
    --lux-primary-soft: rgba(79,140,255,0.25);
    --lux-radius: 14px;
    --lux-shadow: 0 12px 40px rgba(0,0,0,0.45);
    --lux-shadow-soft: 0 8px 25px rgba(0,0,0,0.25);
    --lux-border: rgba(255,255,255,0.08);
}

/* ------------------------------------
   HEADER + NAVBAR LUXURY
------------------------------------ */

.site-header {
    background: linear-gradient(135deg, #0a0d14 0%, #0f1524 100%);
    padding: 22px 0;
    box-shadow: var(--lux-shadow);
    border-bottom: 1px solid var(--lux-border);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Brand Title */
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    text-transform: uppercase;
}

/* NAVBAR */
.navbar {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: var(--lux-text-muted) !important;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.6rem 0.4rem;
    position: relative;
    transition: 0.25s ease;
}

/* Luxury underline hover */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0%;
    height: 2px;
    background: var(--lux-primary);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .current-menu-item .nav-link::after {
    width: 100%;
}

/* Toggler */
.navbar-toggler {
    border-color: var(--lux-text-muted);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ------------------------------------
   SIDEBAR LUXURY
------------------------------------ */

.sidebar-wrapper {
    position: sticky;
    top: 110px;
}

.widget {
    background: var(--lux-bg-light);
    border-radius: var(--lux-radius);
    padding: 1.6rem 1.8rem;
    margin-bottom: 1.6rem;
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-soft);
    color: var(--lux-text);
}

.widget h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lux-text-muted);
    margin-bottom: 1rem;
}

/* ------------------------------------
   POST CARDS LUXURY
------------------------------------ */

.post-card {
    background: var(--lux-bg-light);
    border-radius: var(--lux-radius);
    padding: 1.8rem;
    display: flex;
    gap: 1.6rem;
    margin-bottom: 2rem;
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-soft);
    transition: 0.25s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lux-shadow);
}

.post-title a {
    color: #ffffff;
}

.post-meta {
    color: var(--lux-text-muted);
}

/* ------------------------------------
   COMMENTS LUXURY
------------------------------------ */

.comments-area {
    background: var(--lux-bg-light);
    border-radius: var(--lux-radius);
    padding: 2rem;
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-soft);
    color: var(--lux-text);
}

.comment {
    border-bottom: 1px solid var(--lux-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.comment-author {
    color: #ffffff;
}

.comment-meta {
    color: var(--lux-text-muted);
}

.comment-form input,
.comment-form textarea {
    background: #0d1220;
    border: 1px solid var(--lux-border);
    color: #ffffff;
    border-radius: 10px;
}

.comment-form input[type="submit"] {
    background: var(--lux-primary);
    border: none;
    color: #fff;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ------------------------------------
   FOOTER
------------------------------------ */

.site-footer {
    background: #0a0d14;
    border-top: 1px solid var(--lux-border);
    padding: 1.4rem 0;
    color: var(--lux-text-muted);
    text-align: center;
}
