/* Header Global Styles - Guerreiro Shamo */

:root {
    --header-height: 80px;
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --accent-gold: #d4a574;
    --accent-gold-dark: #b8935f;
    --text-primary: #f5f5f5;
    --text-secondary: #999999;
    --border-color: #444444;
    --shadow: rgba(0, 0, 0, 0.5);
}

header {
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--accent-gold);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: var(--header-height);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--accent-gold-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a.active {
    color: var(--accent-gold);
}

.cta-nav {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--bg-primary) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-login {
    background: transparent;
    color: var(--accent-gold) !important;
    border: 2px solid var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--accent-gold);
    color: var(--bg-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0 10px 20px var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem;
    }
}

/* Body Padding to Account for Fixed Header */
body {
    padding-top: var(--header-height);
}

/* Smooth Scroll for Anchor Links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}