/*
 * Header Styles
 */

.site-header {
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo span,
.site-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-navigation a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    color: #0A0A12 !important;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 13px;
    border-radius: 50px;
    text-transform: uppercase;
    border-bottom: 2px solid #8B7335;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    filter: brightness(1.15);
}

.header-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@media (max-width: 1024px) {
    .mobile-toggle { 
        display: flex !important; 
    }
    .main-navigation { 
        display: none; 
    }
    .header-cta {
        display: none;
    }
    .site-header .container {
        padding: 0 15px;
    }
}