/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* will adjust via JS or we can set min-height */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    /* We'll add a scrolled class via JS */
}

/* When scrolled */
.site-header.scrolled {
    background: rgba(8,9,9,0.65);
    backdrop-filter: blur(15px);
}

/* Hide header on scroll down, show on scroll up */
.site-header--hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.site-title a {
    color: #F2EFE8; /* --text-primary */
    text-decoration: none;
}
.site-title a:hover {
    color: #B89A6A; /* --acent */
}

.site-description {
    font-size: 0.875rem;
    color: #AAA69D; /* --text-secondary */
    margin: 0 0 0 12px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}
.menu-toggle {
    display: none; /* we'll hide the toggle on desktop, show on mobile */
}
.primary-menu {
    display: flex;
    gap: 32px; /* lots of space between items */
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-menu li a {
    color: #F2EFE8; /* --text-primary */
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.primary-menu li a:hover {
    color: #B89A6A; /* --accent */
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
        height: 64px;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #F2EFE8;
        font-size: 1.25rem;
        cursor: pointer;
    }
    .primary-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #080909;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        gap: 16px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    .primary-menu--open {
        right: 0;
    }
    .primary-menu li a {
        font-size: 1rem;
    }
}
