/* =========================================================
   GLOBAL FONTS & ROOT VARIABLES
   ========================================================= */
@import "https://fonts.googleapis.com/css2?family=Anton&family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Merriweather:ital,wght@0,700;0,900;1,400;1,700;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&display=swap";

@font-face {
    font-family: "Proxima Nova";
    src: url("/fonts/Proxima_Nova_Regular/Proxima-Nova-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --var-color-mustard: #F7B926;
    --var-color-text: #141430;
    --var-background-body: rgba(35, 31, 32, 0.96);
}

/* =========================================================
   TOP HEADER BAR
   ========================================================= */
.top-header {
    background-color: #111111;
    padding: 10px 20px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.top-header .top-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header .left-menu,
.top-header .right-menu {
    display: flex;
    align-items: center;
}

.top-header .left-menu ul {
    display: flex;
    gap: 20px;
}

.top-header .left-menu ul a {
    font-weight: 600;
}

.top-header .social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.top-header .social-links a {
    font-size: 21px;
}

.top-header .edition-wrap {
    display: flex;
    align-items: center;
}

.top-header .edition-wrap .menu i {
    color: #fff;
}

.top-header .logo .res-hide .dropdown-toggle {
    font-weight: 700;
}
/* --- Global Icon Settings --- */
.menu-open .bi {
    font-size: 1.2rem;
    line-height: 1 !important; 
}
 #submit-your-pr-id{
        margin-top: 3px;
}

/* tab (Large screens) */
@media only screen and (min-width: 1025px) and (max-width: 1200px) and (orientation: landscape) {
    #submit-your-pr-id{
        margin-top: 3.6px;
    }
}
@media (min-width: 1024px) {
    #submit-your-pr-id{
        margin-top: 3.5px;
    }
}
/* Desktop (Large screens) */
/* @media (min-width: 992px) {
   
    .menu-open .bi {
        font-size: 2.2rem;
    }
} */

/* Tablets (Medium screens) */
@media (min-width: 768px) and (max-width: 991px) {
    #submit-your-pr-id{
        margin-top: 3px;
    }
    .menu-open .bi {
        font-size: 1.2rem;
    }
}

/* Mobile (Small screens) */
@media (max-width: 767px) {
    .menu-open .bi {
        font-size: 1.2rem; /* Slightly smaller for mobile bars */
    }
}

/* --- Vertical Centering Helper --- */
/* Apply this to the parent div if elements still look slightly off */
.nav-icon-toggle {
    height: 100%;
    display: flex;
    align-items: center;
}
/* =========================================================
   LOGO (CENTERED)
   ========================================================= */
.header-logo-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    /* IMPORTANT: keep natural width (fix invisibility) */
    flex: 0 0 auto;
    width: auto;
    text-align: center;
}

.header-logo-main a {
    display: inline-block;
}

.header-logo-main img {
    max-height: 50px;
    display: block;
}

.header-logo-main .main-logo {
    width: 60%;
    margin: 0 auto;
}

/* =========================================================
   LEFT / CENTER / RIGHT ALIGNMENT
   ========================================================= */
.top-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* left pinned left */
.logo.left-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* center logo handled above */

/* right pinned right */
.right-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* =========================================================
   MAIN HEADER WRAP
   ========================================================= */
.main-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
}

#advertise-us {
    text-transform: uppercase;
    color: #F5F5F5;
    font-weight: bold;
    font-family: "EscrowREBold", sans-serif !important;
}

/* =========================================================
   SEARCH FIELD
   ========================================================= */
.input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.search-box {
    width: 0;
    padding: 5px 10px;
    border: none;
    display: none;
    outline: none;
    background: transparent;
    transition: width .3s ease-in-out;
    position: relative;
    z-index: 900;
}

.search-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    color: #fff;
}

/* =========================================================
   EDITION DROPDOWN
   ========================================================= */
.edition-select-wrapper {
    position: relative;
    display: inline-block;
    font-family: "Proxima Nova", sans-serif;
    font-size: 13px;
    background: #141430;
}

.edition-dropdown-btn {
    background: #141430;
    color: #fff !important;
    padding: 5px 10px;
    display: flex;
    gap: 6px;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: color .3s;
}

.edition-dropdown-btn:hover {
    color: #fff;
}

.edition-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease-in-out;
    z-index: 9999;
}

.edition-dropdown-menu li {
    opacity: 0;
    transform: translateY(-15px);
    transition: transform .5s ease, opacity .5s ease;
}

.edition-dropdown-menu li a {
    display: block;
    padding: 4px 10px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid rgba(150, 150, 150, .15);
    background: #141430;
}

.edition-dropdown-menu li a:hover {
    background: #f2c200 !important;
    color: #141430 !important;
}

.edition-select-wrapper:hover .edition-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.edition-select-wrapper:hover .edition-dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}

.edition-select-wrapper:hover .arrow,
.edition-select-wrapper.open .arrow {
    transform: rotate(180deg);
    color: #f2c200;
}

/* =========================================================
   CATEGORY LINKS
   ========================================================= */
.header-categories {
    font-family: "Proxima Nova", sans-serif;
    font-size: 14px;
}

.header-categories li a:hover {
    text-decoration: none !important;
}

/* =========================================================
   HEADER BUTTONS
   ========================================================= */
.header-btn-text-submit {
    font-size: 13px;
}

.header-btn-text {
    padding: 10px 20px;
    font-size: 13px;
}

/* =========================================================
   TAB HEADER
   ========================================================= */
@media only screen and (min-width: 1025px) and (max-width: 1200px) and (orientation: landscape) {
    .header-logo-main{
        width: 50%;
    }
}

@media (max-width: 1024px) {
      .header-logo-main{
        width: 50%;
    }
}

/* =========================================================
   MOBILE HEADER
   ========================================================= */
@media (max-width: 767px) {
    .top-menu-wrapper.d-block.d-md-none {
        width: 100%;
    }

    .top-menu-wrapper .d-flex {
        display: grid !important;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
    }

    .logo.left-menu i {
        font-size: 22px !important;
    }

    #open-search-mobile i {
        font-size: 16px !important;
    }

    .header-logo-main img {
        max-height: 28px;
    }

    .subscribe-btn {
        background: #f5b92a;
        color: #000;
        font-size: 10px;
        font-weight: 600;
        padding: 6px 10px;
        white-space: nowrap;
    }

    .navbar,
    .top-header,
    .container-fluid {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 768px) {
    .header-logo-main .main-logo {
        width: 90%;
    }

    .bottom-header {
        overflow-x: auto;
        white-space: nowrap;
    }

    .header-categories {
        display: inline-flex !important;
        gap: 20px;
        padding: 10px 15px;
    }

    .header-categories li {
        list-style: none;
    }

    .header-categories li a {
        color: #fff;
        font-size: 13px;
        white-space: nowrap;
    }
    .navbar .subscribe-btn{
        padding: 5px 10px;
    }
}

/* Ensure the wrapper uses flex on mobile */
@media (max-width: 767px) {
    .top-menu-wrapper.d-flex {
        display: flex !important;
        align-items: center !important;
    }
}

/* Reset Icons: Force them to be the exact height of their design */
.top-header i.bi {
    line-height: 1 !important;
    display: flex;
    align-items: center;
    margin: 0;
    color: #F5F5F5;
}

/* Reset the Subscribe button line-height to prevent it from pushing down */
.subscribe-btn {
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0;
}

/* Ensure images don't have default bottom spacing */
.main-logo {
    display: block;
    margin: 0;
}

@media (max-width: 576px) {
    .top-header .right-menu {
        margin-right: 7px;
        display: block;
        text-align: center;
    }
}

@media (max-width: 545px) {
    .top-header {
        padding: 5px 0px !important;
    }

    .header-btn-text {
        padding: 5px 10px;
    }
}