/* assets/css/header.css */

.sovereign-header {
    background: rgba(0, 0, 0, 0.95); /* Absolute Black with slight transparency */
    height: 90px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
}

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

/* Brand Name Styling */
.brand-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 4px;
    transition: 0.3s;
}

.brand-name:hover {
    color: #8b2cf5;
    text-shadow: 0 0 15px rgba(139, 44, 245, 0.6);
}

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

.nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover, 
.nav-list a.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(139, 44, 245, 0.8);
}

/* For Active Page Indicator */
.nav-list a.active {
    color: #8b2cf5;
    border-bottom: 1px solid #8b2cf5;
    padding-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container { padding: 0 20px; }
    .nav-list { display: none; } /* Mobile menu can be added later */
    .brand-name { font-size: 1rem; }
}