/* ==========================================================================
   SUPREME HEADER - BLOG / EDITORIAL STYLE
   ========================================================================== */

/* Import elegant Serif font for the Blog vibe */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500&display=swap');

.dodigitals-header-blog {
    width: 100%;
    position: relative;
    z-index: 999;
    font-family: 'Inter', sans-serif;
}

.dodigitals-header-blog .header-row {
    background-color: var(--row-bg-light);
    padding: var(--row-pt) var(--row-pr) var(--row-pb) var(--row-pl);
    transition: all 0.3s ease;
}

/* --- Topbar Styling --- */
.dodigitals-header-blog .header-row-topbar {
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Main Header (Logo Area) --- */
.dodigitals-header-blog .header-row-main {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Editorial Logo styling (if text logo is used, else image scales nicely) */
.dodigitals-header-blog .site-logo img {
    max-height: 70px; /* Big proud logo for blogs */
    width: auto;
    transition: transform 0.3s ease;
}
.dodigitals-header-blog .site-logo:hover img {
    transform: scale(1.03);
}

/* --- Bottom Header (Menu Area) --- */
.dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list {
    display: flex;
    justify-content: center; /* Center the menu */
    gap: 35px;
}

.dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list li a {
    font-family: 'Playfair Display', serif; /* Elegant Serif for Menu */
    font-size: 17px;
    font-weight: 600;
    color: #111;
    text-transform: capitalize;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Beautiful Elegant Underline Hover Effect */
.dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #FF7130; /* Theme Primary Color */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list li a:hover::after,
.dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list li.current-menu-item > a::after {
    width: 100%;
}

.dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list li a:hover {
    color: #FF7130;
}

/* --- Subscription Button --- */
.dodigitals-header-blog .header-btn {
    border-radius: 30px; /* Pill shape for editorial feel */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(255, 113, 48, 0.2);
}

/* --- Dark Mode Support --- */
body.dark-mode .dodigitals-header-blog .header-row {
    background-color: var(--row-bg-dark) !important;
    border-color: rgba(255,255,255,0.05);
}
body.dark-mode .dodigitals-header-blog .dodigitals-nav-pro .dd-menu-list li a {
    color: #f1f1f1;
}