/* Shared Navigation CSS for Lord of Chains Public Pages */
/* This file provides consistent navigation styling across status, privacy, and terms pages */

/* Navigation Base Styles */
nav {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-logo {
        font-size: 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Smaller phones */
@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }
    
    .nav-logo {
        font-size: 18px;
    }
    
    .nav-links {
        padding: 15px;
    }
}

/* Ensure this navigation takes precedence over any other menu systems */
#cssmenu,
#cssmenu ul,
#cssmenu #menu-button,
.nav-toggle {
    display: none !important;
}

/* Ensure our navigation is always visible */
nav {
    display: block !important;
}

.nav-container {
    display: flex !important;
}
