/* HEADER STYLES */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.hero-section {
    padding-top: 0;
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-family: 'NB Architekt Std', monospace;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

@media (max-width:768px) {
    .header-container {
        padding: 20px;
        gap: 12px;
    }
    .nav-list {
    gap: 12px;
    }
    .nav-list a {
        font-size: 14px;
    }
}
