/* RRTS Shared Styles - Header and Navigation */

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 1.8em;
    font-weight: 300;
    color: white;
    margin: 0;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9em;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-links a.active {
    background-color: rgba(255,255,255,0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
    .header {
        padding: 15px 20px;
    }
    
    .header h1 {
        font-size: 1.5em;
    }
    
    .header-info {
        font-size: 0.8em;
        gap: 15px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 0.9em;
    }
}
