﻿/* =========================================================
   HULEG INTERNATIONAL SCHOOL
   FINAL HEADER + HOME HERO
========================================================= */

:root {
    --huleg-navy: #971a22;
    --huleg-navy-dark: #7a151b;
    --huleg-gold: #c5a66b;
    --huleg-gold-dark: #9f824b;
    --huleg-cream: #f4f2ed;
}


/* =========================================================
   RESET OLD HEADER RULES
========================================================= */

.navbar-fixed,
.navbar-school,
.huleg-header,
.huleg-mainnav,
.new-site-header,
.new-navbar {
    position: static;
}


/* =========================================================
   HEADER
========================================================= */

.hero-site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    width: 100%;
}


/* Inner pages must have dark navigation background */

.inner-page .hero-site-header {
    position: relative;
}

.inner-page .hero-mainnav {
    background: var(--huleg-navy-dark);
}


/* =========================================================
   TOP BAR
========================================================= */

.hero-topbar {
    height: 35px;
    background: rgba(255,255,255,.98);
    color: #17334c;
}

.hero-topbar-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-topbar-inner {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-topbar-left,
.hero-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-topbar a {
    color: #17334c;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
}

    .hero-topbar a:hover,
    .hero-topbar a.active {
        color: var(--huleg-gold-dark);
    }

.hero-topbar i {
    font-size: 14px;
}

.hero-topbar span {
    color: #aaa;
}

.hero-topbar-separator {
    width: 1px;
    height: 13px;
    margin: 0 5px;
    background: #ccc;
}


/* =========================================================
   MAIN MENU OVER HERO
========================================================= */

.hero-mainnav {
    position: relative;
    height: 184px;
    background: linear-gradient( 180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.27) 52%, rgba(0,0,0,0) 100% );
    transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.hero-nav-container {
    width: 100%;
    max-width: 1250px;
    height: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================================
   NAV GRID
========================================================= */

.hero-nav-layout {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}


/* =========================================================
   LEFT / RIGHT MENU
========================================================= */

.hero-menu {
    height: 100px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-menu-left {
    justify-content: flex-end;
}

.hero-menu-right {
    justify-content: flex-start;
}

.hero-menu-item {
    position: relative;
}


/* =========================================================
   MENU LINKS
========================================================= */

.hero-menu-link {
    position: relative;
    display: block;
    padding: 15px 0;
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .015em;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,.38);
}

    .hero-menu-link:hover {
        color: #d9c18f !important;
    }


    /* gold hover underline */

    .hero-menu-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 8px;
        height: 1px;
        background: var(--huleg-gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .2s ease;
    }

    .hero-menu-link:hover::after {
        transform: scaleX(1);
    }


/* =========================================================
   CENTER LOGO
========================================================= */

.hero-center-logo {
    position: relative;
    z-index: 20;
    display: block;
    width: 150px;
    text-decoration: none;
}

.hero-center-logo-inner {
    width: 150px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    transition: width .25s ease, height .25s ease, padding .25s ease;
}

.hero-center-logo img {
    width: auto;
    height: auto;
    max-width: 112px;
    max-height: 145px;
    object-fit: contain;
    transition: max-width .25s ease, max-height .25s ease;
}


/* =========================================================
   DROPDOWN
========================================================= */

.hero-dropdown {
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    z-index: 5000;
    width: 280px;
    padding: 21px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    background: rgba(255,255,255,.99);
    box-shadow: 0 18px 42px rgba(0,0,0,.20);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.hero-has-dropdown:hover .hero-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,0);
}

.hero-dropdown-title {
    margin-bottom: 12px;
    padding-bottom: 11px;
    border-bottom: 1px solid #ddd;
    color: var(--huleg-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
}

.hero-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #303030 !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color .2s ease, padding-left .2s ease;
}

    .hero-dropdown-link:last-child {
        border-bottom: 0;
    }

    .hero-dropdown-link:hover {
        padding-left: 4px;
        color: var(--huleg-gold-dark) !important;
    }

    .hero-dropdown-link i {
        color: var(--huleg-gold-dark);
        font-size: 10px;
    }


/* =========================================================
   MOBILE BUTTON
========================================================= */

.hero-mobile-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 22px;
    width: 44px;
    height: 44px;
    padding: 6px;
    border: 0;
    background: transparent;
}

    .hero-mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 6px 0;
        background: #fff;
    }


/* =========================================================
   STICKY HEADER
========================================================= */

.hero-site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6000;
    animation: hulegHeaderDown .25s ease;
}


    /* topbar disappears */

    .hero-site-header.is-sticky .hero-topbar {
        display: none;
    }


    /* compact menu */

    .hero-site-header.is-sticky .hero-mainnav {
        height: 74px;
        background: rgba(151,26,34,.98);
        box-shadow: 0 7px 25px rgba(0,0,0,.18);
    }


    /* center items vertically */

    .hero-site-header.is-sticky .hero-nav-layout {
        align-items: center;
    }


    /* menu */

    .hero-site-header.is-sticky .hero-menu {
        height: 74px;
    }


    /* logo becomes compact */

    .hero-site-header.is-sticky .hero-center-logo {
        width: 92px;
    }

    .hero-site-header.is-sticky
    .hero-center-logo-inner {
        width: 92px;
        height: 74px;
        padding: 7px;
        box-shadow: none;
    }

    .hero-site-header.is-sticky
    .hero-center-logo img {
        max-width: 65px;
        max-height: 59px;
    }


    /* menu text */

    .hero-site-header.is-sticky
    .hero-menu-link {
        color: #fff !important;
        text-shadow: none;
    }


    /* dropdown below compact nav */

    .hero-site-header.is-sticky
    .hero-dropdown {
        top: 100%;
    }


/* =========================================================
   STICKY ANIMATION
========================================================= */

@keyframes hulegHeaderDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* =========================================================
   ACTUAL CURRENT HOME HERO
   Your _HomeMn.cshtml uses .hh-hero
========================================================= */

.hh-hero {
    position: relative !important;
    width: 100%;
    min-height: 100vh !important;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: url("/images/surguuli.jpg") !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-color: var(--huleg-navy-dark) !important;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hh-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 180deg, rgba(3,20,35,.10) 0%, rgba(3,20,35,.10) 30%, rgba(3,20,35,.30) 58%, rgba(3,20,35,.88) 100% );
    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hh-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 250px;
    padding-bottom: 95px;
    color: #fff;
}

.hh-hero-eyebrow {
    margin-bottom: 18px;
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.hh-hero-title {
    max-width: 1050px;
    margin: 0;
    color: #fff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem,5.7vw,6rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.025em;
    text-shadow: 0 2px 15px rgba(0,0,0,.22);
}

.hh-hero-bottom {
    max-width: 1000px;
    margin-top: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.hh-hero-intro {
    max-width: 630px;
    margin: 0;
    color: rgba(255,255,255,.87);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hh-outline-link {
    min-width: 170px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,.8);
    color: #fff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
}

    .hh-outline-link:hover {
        background: #fff;
        border-color: #fff;
        color: var(--huleg-navy-dark) !important;
    }


/* =========================================================
   DISCOVER
========================================================= */

.hh-scroll-link {
    position: absolute;
    right: 38px;
    bottom: 38px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.85) !important;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
}

    .hh-scroll-link:hover {
        color: #d9c18f !important;
    }


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.huleg-mobile-panel {
    width: min(430px,94vw) !important;
}

    .huleg-mobile-panel .offcanvas-header {
        min-height: 90px;
        padding: 14px 24px;
        border-bottom: 1px solid #eee;
    }

.huleg-mobile-panel-logo {
    height: 62px;
}


/* =========================================================
   MOBILE NAV LIST
========================================================= */

.mobile-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-item {
    border-bottom: 1px solid #e8e8e8;
}

.mobile-nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border: 0;
    background: transparent;
    color: var(--huleg-navy) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.mobile-nav-button {
    cursor: pointer;
}

.mobile-nav-children {
    padding: 2px 15px 12px;
    background: var(--huleg-cream);
}

.mobile-nav-child {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    color: #444 !important;
    text-decoration: none;
    font-size: 13px;
}

    .mobile-nav-child:last-child {
        border-bottom: 0;
    }


/* =========================================================
   MOBILE BOTTOM
========================================================= */

.mobile-panel-bottom {
    margin-top: 30px;
}

.mobile-panel-admission {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 17px;
    background: var(--huleg-navy);
    color: #fff !important;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mobile-panel-language {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

    .mobile-panel-language a {
        color: #999 !important;
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
    }

        .mobile-panel-language a.active {
            color: var(--huleg-navy) !important;
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .hero-mainnav {
        height: 82px !important;
        background: rgba(151,26,34,.96) !important;
    }

    .hero-nav-layout {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-menu {
        display: none;
    }

    .hero-center-logo {
        width: 100px;
    }

    .hero-center-logo-inner {
        width: 100px;
        height: 112px;
        padding: 10px;
    }

    .hero-center-logo img {
        max-width: 78px;
        max-height: 88px;
    }

    .hero-mobile-toggle {
        display: block;
    }


    /* sticky mobile */

    .hero-site-header.is-sticky
    .hero-mainnav {
        height: 70px !important;
        background: rgba(151,26,34,.98) !important;
    }

    .hero-site-header.is-sticky
    .hero-center-logo {
        width: 82px;
    }

    .hero-site-header.is-sticky
    .hero-center-logo-inner {
        width: 82px;
        height: 70px;
    }

    .hero-site-header.is-sticky
    .hero-center-logo img {
        max-width: 60px;
        max-height: 54px;
    }


    /* hero */

    .hh-hero {
        min-height: 800px !important;
        background-position: center center !important;
    }

    .hh-hero-content {
        padding-top: 190px;
        padding-bottom: 85px;
    }

    .hh-hero-title {
        font-size: clamp(2.8rem,8vw,4.8rem);
    }
}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 767.98px) {

    .hero-topbar-left {
        display: none;
    }

    .hero-topbar-inner {
        justify-content: flex-end;
    }

    .hero-topbar-right {
        gap: 8px;
    }

        .hero-topbar-right > span:not(.hero-topbar-separator) {
            display: none;
        }

        .hero-topbar-right
        a:first-child {
            display: none;
        }


    .hh-hero {
        min-height: 720px !important;
    }

    .hh-hero-content {
        padding-top: 160px;
        padding-bottom: 65px;
    }

    .hh-hero-title {
        font-size: 2.75rem;
    }

    .hh-hero-bottom {
        display: block;
    }

    .hh-hero-intro {
        font-size: 14px;
    }

    .hh-outline-link {
        margin-top: 28px;
    }

    .hh-scroll-link {
        display: none;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.huleg-new-footer {
    background: var(--huleg-navy-dark);
    color: #fff;
}

.huleg-footer-logo {
    max-width: 230px;
    margin-bottom: 22px;
}

.huleg-footer-intro {
    max-width: 380px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.85;
}

.huleg-footer-title {
    margin-bottom: 20px;
    color: var(--huleg-gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.huleg-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

    .huleg-footer-contact > div {
        display: flex;
        gap: 12px;
        color: rgba(255,255,255,.67);
        font-size: 12px;
        line-height: 1.75;
    }

    .huleg-footer-contact i {
        color: var(--huleg-gold);
    }

.huleg-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .huleg-footer-links li {
        margin-bottom: 10px;
    }

    .huleg-footer-links a {
        color: rgba(255,255,255,.67);
        text-decoration: none;
        font-size: 12px;
    }

        .huleg-footer-links a:hover {
            color: #fff;
        }

.huleg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
}

.huleg-footer-bottom-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255,255,255,.45);
}

.huleg-social {
    display: flex;
    gap: 8px;
}

    .huleg-social a {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.22);
        color: #fff !important;
        text-decoration: none;
    }

        .huleg-social a:hover {
            background: var(--huleg-gold);
            border-color: var(--huleg-gold);
            color: var(--huleg-navy-dark) !important;
        }
/* =========================================================
   HOME - SECTION AFTER HERO
========================================================= */

.home-introduction {
    position: relative;
    background: #fff;
    padding: 78px 0 85px;
}

.home-introduction-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.home-section-eyebrow {
    margin-bottom: 15px;
    color: #9f824b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-introduction-title {
    margin: 0;
    color: #971a22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
}

    .home-introduction-title em {
        color: #b79a60;
        font-weight: 400;
    }

.home-title-line {
    width: 75px;
    height: 2px;
    margin: 24px auto 30px;
    background: #b79a60;
}

.home-introduction-text {
    max-width: 1100px;
    margin: 0 auto 12px;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    color: #971a22;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

    .home-text-link i {
        color: #b79a60;
        transition: transform .2s ease;
    }

    .home-text-link:hover {
        color: #b79a60;
    }

        .home-text-link:hover i {
            transform: translateX(5px);
        }


/* =========================================================
   LARGE FEATURE / RESULTS
========================================================= */

.home-feature-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #082946;
}

.home-feature-image {
    position: relative;
    width: 100%;
    min-height: 570px;
    overflow: hidden;
}

    .home-feature-image > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.home-feature-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(5,31,54,.88) 0%, rgba(5,31,54,.74) 48%, rgba(5,31,54,.34) 100% );
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.home-feature-content {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 60px));
    min-height: 570px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.home-feature-small {
    margin-bottom: 12px;
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.home-feature-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 400;
    line-height: 1;
}

    .home-feature-title span {
        font-weight: 700;
    }

.home-feature-gold-line {
    width: min(760px, 80%);
    height: 3px;
    margin: 28px auto 34px;
    background: #c5a66b;
}


/* =========================================================
   RESULT NUMBERS
========================================================= */

.home-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    width: 100%;
}

.home-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-result-number {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.06em;
}

.home-result-label {
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .07em;
    text-align: left;
}

.home-result-divider {
    width: 1px;
    height: 75px;
    background: rgba(255,255,255,.28);
}


/* =========================================================
   FEATURE BUTTON
========================================================= */

.home-feature-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 170px;
    margin-top: 38px;
    padding: 14px 22px;
    border: 1px solid rgba(255,255,255,.8);
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    transition: background .2s ease, color .2s ease;
}

    .home-feature-button:hover {
        background: #fff;
        color: #082946;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-introduction {
        padding: 65px 0 70px;
    }

    .home-introduction-inner {
        max-width: 760px;
    }

    .home-feature-image,
    .home-feature-content {
        min-height: 520px;
    }

    .home-results {
        gap: 25px;
    }

    .home-result-divider {
        height: 60px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-introduction {
        padding: 55px 0 60px;
    }

    .home-introduction-inner {
        padding-left: 8px;
        padding-right: 8px;
    }

    .home-introduction-title {
        font-size: 2rem;
    }

    .home-introduction-text {
        font-size: 13px;
        line-height: 1.8;
    }


    .home-feature-image,
    .home-feature-content {
        min-height: 620px;
    }

    .home-feature-content {
        width: calc(100% - 35px);
    }

    .home-feature-title {
        font-size: 3.1rem;
    }

    .home-feature-gold-line {
        width: 85%;
    }

    .home-results {
        flex-direction: column;
        gap: 22px;
    }

    .home-result-item {
        min-width: 210px;
        justify-content: flex-start;
    }

    .home-result-number {
        width: 120px;
        font-size: 4rem;
        text-align: right;
    }

    .home-result-divider {
        width: 130px;
        height: 1px;
    }
}
/* =========================================================
   ADMIN AUTH - TOP BAR
========================================================= */

.hero-user-name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #17334c !important;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-admin-login,
.hero-admin-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #17334c !important;
    text-decoration: none !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    white-space: nowrap;
}

    .hero-admin-login i,
    .hero-admin-dashboard i {
        color: #b59a62;
        font-size: 13px;
    }

    .hero-admin-login:hover,
    .hero-admin-dashboard:hover {
        color: #b59a62 !important;
    }

.hero-logout-form {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-logout-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #17334c;
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

    .hero-logout-button i {
        color: #b59a62;
        font-size: 13px;
    }

    .hero-logout-button:hover {
        color: #b59a62;
    }


/* =========================================================
   MOBILE ADMIN
========================================================= */

.mobile-panel-admin,
.mobile-panel-logout {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 13px 16px;
    border: 1px solid #ddd;
    background: #fff;
    color: #971a22 !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

    .mobile-panel-admin:hover,
    .mobile-panel-logout:hover {
        background: #971a22;
        border-color: #971a22;
        color: #fff !important;
    }

.mobile-panel-logout-form {
    margin: 0;
    padding: 0;
}

.mobile-panel-logout {
    cursor: pointer;
    text-align: left;
}

@media (max-width: 1199.98px) {

    .hero-user-name {
        display: none;
    }
}

@media (max-width: 767.98px) {

    .hero-admin-login,
    .hero-admin-dashboard,
    .hero-logout-button {
        font-size: 8px !important;
    }
}
