/* TITLE: BLXCKHIPPY ENTERTAINMENT - EDITORIAL HEADER */

.bh-editorial-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: transparent;
    transition: background 0.4s ease, height 0.4s ease, border-bottom 0.4s ease;
    box-sizing: border-box;
}

/* The Scroll State: Subtle glass, very corporate */
.bh-editorial-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Symmetrical Flex Zones */
.bh-header-left, .bh-header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.bh-header-left {
    justify-content: flex-start;
    gap: 40px;
}

.bh-header-right {
    justify-content: flex-end;
    gap: 25px;
}

.bh-header-center {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}

/* Typography & Links (Editorial Style) */
.bh-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
}

.bh-nav-link:hover, .bh-nav-link.active {
    opacity: 1;
}

/* Elegant hairline underline on hover */
.bh-nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--bh-orange, #ff9f2e);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bh-nav-link:hover::after, .bh-nav-link.active::after {
    width: 100%;
}

/* Center Logo */
.bh-brand-logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Nav Icons */
.bh-icon-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bh-icon-btn:hover {
    opacity: 1;
    color: var(--bh-orange, #ff9f2e);
    transform: translateY(-2px);
}

/* Mobile Breakpoints */
@media (max-width: 1024px) {
    .bh-header-left { gap: 20px; }
    .bh-nav-link { font-size: 0.75rem; letter-spacing: 1px; }
}

@media (max-width: 768px) {
    .bh-header-left { display: none; /* Hide links on mobile, will need a hamburger menu later */ }
    .bh-header-right { gap: 15px; }
    .bh-editorial-header { padding: 0 5%; }
}