/* === DESKTOP HEADER STYLING (Advanced Version) === */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

/* ====== TOP HEADER BAR (Social Icons) ====== */
.header-top {
    background-color: #000;
    padding: 5px 0;
    color: #fff;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

/* === DESKTOP OVERRIDE FOR SOCIAL ICON BAR === */
@media screen and (min-width: 992px) {
    .social-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: #000;
        color: #fff;
        padding: 10px 40px;
        border-bottom: 2px solid #0047AB; /* deep-blue line */
    }

    .social-icons a {
        color: #ffff;
        margin-left: 20px;
        font-size: 1.2em;
        transition: color 0.3s ease;
    }

    .social-icons a:hover {
        color: #00BFFF; /* lighter blue on hover */
    }
}

/* ====== LOGO + NAV WRAPPER ====== */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0d0d0d;
    padding: 10px 40px;
    flex-wrap: wrap;
}

/* === Desktop Header Banner Override === */
@media only screen and (min-width: 769px) {
    .logo img {
        content: url("https://loadedplug.com/wp-content/themes/loadedplug/images/loadedplug-logo-2.jpg");
        width: 450px;     /* adjust size */
        height: auto;
    }
}


/* ====== NAVIGATION ====== */
.category-nav {
    background-color: #111;
    border-top: 2px solid #1e3a8a;
    border-bottom: 3px solid #1e3a8a; /* deep blue */
    text-align: right;
    padding: 0;
    position: relative;
}

.category-scroll {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding: 12px 40px;
}

.category-scroll a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.category-scroll a:hover,
.category-scroll a.active {
    color: #1e3a8a;
}

/* Deep Blue Line on Hover */
.category-scroll a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #1e3a8a;
    transition: width 0.3s ease;
}

.category-scroll a:hover::after {
    width: 100%;
}

/* ====== DROPDOWN MENUS ====== */
.category-scroll li {
    position: relative;
    list-style: none;
}

.category-scroll ul {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #111;
    padding: 0;
    margin: 0;
    border: 1px solid #1e3a8a;
    border-radius: 4px;
    z-index: 9999;
    min-width: 200px;
}

.category-scroll ul li {
    border-bottom: 1px solid #222;
}

.category-scroll ul li:last-child {
    border-bottom: none;
}

.category-scroll ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
}

.category-scroll ul li a:hover {
    background-color: #1e3a8a;
    color: #fff;
}

/* Show dropdown on hover */
.category-scroll li:hover > ul {
    display: block;
}
/* === IMPROVED DATE + SEARCH + SOCIAL SECTION === */
.current-time-box,
.search-bar-container,
.social-section {
    background-color: #f8f8f8;
    text-align: center;
    padding: 15px 0;
    width: 100%;
}

/* === DATE & TIME BOX === */
.current-time-box {
    background: linear-gradient(to right, #fefefe, #f2f2f2);
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.current-time-box p {
    margin: 0;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* === SEARCH BAR CONTAINER === */
.search-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    width: 420px;
    transition: box-shadow 0.3s ease;
}

.search-form:hover {
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.search-field {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    outline: none;
    color: #333;
}

.search-field::placeholder {
    color: #888;
}

.search-submit {
    background-color: #1e3a8a; /* Deep Blue */
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s;
}

.search-submit:hover {
    background-color: #274dbb;
}

