/* Site Title */
.site-title {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Tagline */
.blog-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.header {
    background: #111111;
    padding-top: 0px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

/* Site Title */

.site-title {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

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

/* Tagline */

.blog-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: #999999;
    margin-top: 10px;
}

/* =========================================
   DESKTOP MENU
========================================= */

@media screen and (min-width: 769px) {

    .navigation {
        width: 100%;
        position: relative;
        text-align: center;
        background: #111111 !important;
        padding: 8px 60px 8px 20px;
        box-sizing: border-box;
    }

    .navigation ul {
        display: flex !important;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap !important;
        gap: 14px;
        margin: 0 auto !important;
        padding: 0 !important;
        list-style: none;
    }

    .navigation li {
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    .navigation a {
        font-size: 11px !important;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        font-weight: 600;
        white-space: nowrap;
        color: #ffffff !important;
    }

    .navigation a:hover,
    .navigation .current-menu-item a {
        color: #FF5A1F !important;
    }

    .search-toggle {
        position: absolute !important;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 !important;
    }
}

/* =========================================
   MOBILE HAMBURGER FIX
========================================= */

@media screen and (max-width: 768px) {

    /* Restore vertical dropdown */

    .navigation ul {
        display: block !important;
        width: 100%;
    }

    .navigation li {
        display: block !important;
        width: 100%;
        text-align: left;
        margin: 0 !important;
    }

    .navigation a {
        display: block;
        padding: 14px 20px;
        font-size: 14px !important;
        border-bottom: 1px solid #222;
    }

    /* Mobile menu background */

    .navigation,
    .mobile-navigation,
    .mobile-menu {
        background: #111111 !important;
    }

    /* Hamburger icon */

    .nav-toggle {
        background: #111111 !important;
        color: #ffffff !important;
    }

    /* Prevent horizontal overflow */

    body {
        overflow-x: hidden;
    }
}

/* =====================================
   REMOVE GREY STRIP AT TOP
===================================== */

html,
body,
.header,
.navigation,
.mobile-navigation,
.nav-toggle,
.navigation-top,
.header-inner,
.section-inner {
    background: #111111 !important;
    border: none !important;
}

/* Remove top spacing */

body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove hidden borders/shadows */

.header,
.nav-toggle,
.mobile-navigation {
    box-shadow: none !important;
    border-top: 0 !important;
}

/* Force wrapper black */

#wrapper,
.wrapper,
.container {
    background: #111111 !important;
}

/* =====================================
   COMPACT HEADER LAYOUT
===================================== */

/* Reduce overall header height */

.header {
    padding-top: 1px !important;
    padding-bottom: 5px !important;
    min-height: auto !important;
}

/* Remove excess inner spacing */

.header-inner,
.section-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Logo image */

.site-logo img,
.custom-logo {
    max-height: 100px !important;
    margin-bottom: 8px !important;
}

/* Site title */

.site-title {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.05 !important;
    font-size: 42px !important;
}

/* Title link */

.site-title a {
    margin: 0 !important;
    padding: 0 !important;
}

/* Tagline */

.blog-description {
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
    font-size: 12px !important;
    letter-spacing: 2px;
}

/* Navigation spacing */

.navigation {
    margin-top: 6px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* Mobile optimization */

@media screen and (max-width: 768px) {

    .site-title {
        font-size: 30px !important;
    }

    .custom-logo,
    .site-logo img {
        max-height: 75px !important;
    }

    .blog-description {
        font-size: 11px !important;
    }
}

/* Stronger article titles */

.post-title {
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    letter-spacing: -0.5px;
}

/* Better paragraph readability */

.entry-content p {
    font-size: 18px;
    line-height: 1.95;
}