/* =========================
   Breadcrumb
========================= */

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    padding-left: 1.25rem;
}

/* Shared text style */
.breadcrumb-left a,
.breadcrumb-current,
.breadcrumb-separator {
    color: #1f2a44;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

/* Hover underline (same as nav) */
.breadcrumb-left a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #1f2a44;
    transition: width 0.25s ease;
}

.breadcrumb-left a:hover::after {
    width: 100%;
}


/* =========================
   Hero Navigation
========================= */

.hero-nav {
    display: flex;
    align-items: center;
}

.hero-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding-left: 0.5rem;
}

.hero-menu a {
    color: #1f2a44;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}

/* Same underline animation */
.hero-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #1f2a44;
    transition: width 0.25s ease;
}

.hero-menu a:hover::after {
    width: 100%;
}


/* =========================
   Sticky Topbar
========================= */

.hero-topbar {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;

    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}


/* =========================
   HERO DROPDOWN MENU
========================= */

/* Parent must be relative */
.hero-menu li {
    position: relative;
}

/* Dropdown menu */
.hero-menu .sub-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    flex-direction: column;

    list-style: none;
    padding: 0.4rem 0;
    margin: 0;

    min-width: 180px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Show dropdown when JS toggles class */
.hero-menu li.menu-open > .sub-menu {
    display: block;
}

/* Dropdown items */
.hero-menu .sub-menu li {
    width: 100%;
}

/* Dropdown links */
.hero-menu .sub-menu a {
    display: block;
    padding: 0.35rem 1rem;
}

/* Remove underline animation inside dropdown */
.hero-menu .sub-menu a::after {
    display: none;
}


/* =========================
   Language Switch
========================= */

.hero-lang {
    margin-left: 0.25rem;
    gap: 0.5rem;
}

.hero-lang img {
    height: 18px;
    width: auto;
}


/* =========================
   MOBILE LANGUAGE SWITCH
========================= */

.mobile-lang-switch {
    display: none;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

.hero-topbar {
    display: none;
}

.mobile-lang-switch {
    display: flex;
    justify-content: center;
    align-items: center;

   

    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-lang-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.mobile-lang-menu img {
    height: 20px;
    width: auto;
}

}