/* =============================================
   TOPBAR — only what Bootstrap can't do
   ============================================= */

/* Link styling — typography & hover */
.site-topbar__links a,
.site-topbar__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.25s ease;
}

.site-topbar__links a:hover,
.site-topbar__socials a:hover {
    color: #ffffff;
}

/* Vertical separator between links and icons */
.site-topbar__sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* Social icon circles */
.site-topbar__socials a {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 12px;
    letter-spacing: 0;
}

/* =============================================
   HOME VIDEO SECTION
   ============================================= */
.home-video-section {
    position: relative;
    overflow: hidden;
}

.home-video-bg,
.home-video-overlay {
    position: absolute;
    inset: 0;
}

.home-video-bg {
    z-index: 0;
}

.home-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-video-overlay {
    background: linear-gradient(
        180deg,
        rgba(9, 27, 54, 0.82) 0%,
        rgba(9, 27, 54, 0.55) 18%,
        rgba(9, 27, 54, 0.20) 38%,
        rgba(9, 27, 54, 0.00) 60%
    );
    z-index: 1;
    pointer-events: none;
}

.home-video-section > *:not(.home-video-bg):not(.home-video-overlay) {
    position: relative;
    z-index: 2;
}

/* =============================================
   NEWS / BLOG — category tag pill
   ============================================= */
.post-prev-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: #091b36;
    padding: 3px 10px;
    border-radius: 2px;
}

.post-prev-info {
    font-size: 12px;
    color: #999;
}

/* =============================================
   NAV OFFSET (topbar is 48px tall)
   ============================================= */
.main-nav {
    top: 35px;
}

.main-nav.mobile-on .inner-nav {
    max-height: calc(100vh - 48px);
}

.top-bar{
        z-index: 1035;
    background: transparent;
    /* backdrop-filter: blur(12px); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Scrolled state styling */
.site-topbar.body-scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(9, 27, 54, 0.08);
}

.site-topbar.body-scrolled .site-topbar__links a,
.site-topbar.body-scrolled .site-topbar__socials a {
    color: rgba(9, 27, 54, 0.78);
}

.site-topbar.body-scrolled .site-topbar__links a:hover,
.site-topbar.body-scrolled .site-topbar__socials a:hover {
    color: #091b36;
}

.site-topbar.body-scrolled .site-topbar__sep {
    background: rgba(9, 27, 54, 0.18);
}

.site-topbar.body-scrolled .site-topbar__socials a {
    border: 1px solid rgba(9, 27, 54, 0.12);
}