/**
 * BPN Main Header Styles
 * Based on Figma design specifications
 */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* Main Header Container */
.bpn-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    width: 100%;
}

/* Logo Container */
.bpn-logo-container {
    width: 116px;
    height: 48px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.bpn-logo-container img {
    max-height: 48px;
    width: auto;
}

/* Main Navigation */
.bpn-main-nav {
    font-family: 'Instrument Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.bpn-main-nav .wp-block-navigation__container {
    gap: 73px;
}

.bpn-main-nav .wp-block-navigation-item__content {
    color: #FFFFFF;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bpn-main-nav .wp-block-navigation-item__content:hover {
    opacity: 0.85;
}

/* Login Button */
.bpn-login-btn .wp-block-button__link {
    font-family: 'Instrument Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #F5C825 !important;
    background: transparent !important;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bpn-login-btn .wp-block-button__link:hover {
    opacity: 0.85;
    color: #F5C825 !important;
}

/* Responsive adjustments */
@media (max-width: 782px) {
    .bpn-header {
        padding: 12px 16px;
        min-height: 64px;
    }

    .bpn-main-nav .wp-block-navigation__container {
        gap: 32px;
    }

    .bpn-logo-container {
        width: 100px;
    }
}

@media (max-width: 600px) {
    .bpn-header .wp-block-group {
        flex-wrap: wrap;
        gap: 16px;
    }

    .bpn-main-nav {
        display: none;
    }
}